Buckets:
| /* Definitions for bytecode */ | |
| extern "C" { | |
| /* Count of all local monitoring events */ | |
| /* Count of all "real" monitoring events (not derived from other events) */ | |
| /* Count of all monitoring events */ | |
| /* Tables of which tools are active for each monitored event. */ | |
| typedef struct _Py_LocalMonitors { | |
| uint8_t tools[_PY_MONITORING_LOCAL_EVENTS]; | |
| } _Py_LocalMonitors; | |
| typedef struct _Py_GlobalMonitors { | |
| uint8_t tools[_PY_MONITORING_UNGROUPED_EVENTS]; | |
| } _Py_GlobalMonitors; | |
| typedef struct { | |
| PyObject *_co_code; | |
| PyObject *_co_varnames; | |
| PyObject *_co_cellvars; | |
| PyObject *_co_freevars; | |
| } _PyCoCached; | |
| /* Ancillary data structure used for instrumentation. | |
| Line instrumentation creates this with sufficient | |
| space for one entry per code unit. The total size | |
| of the data will be `bytes_per_entry * Py_SIZE(code)` */ | |
| typedef struct { | |
| uint8_t bytes_per_entry; | |
| uint8_t data[1]; | |
| } _PyCoLineInstrumentationData; | |
| typedef struct { | |
| int size; | |
| int capacity; | |
| struct _PyExecutorObject *executors[1]; | |
| } _PyExecutorArray; | |
| /* Main data structure used for instrumentation. | |
| * This is allocated when needed for instrumentation | |
| */ | |
| typedef struct { | |
| /* Monitoring specific to this code object */ | |
| _Py_LocalMonitors local_monitors; | |
| /* Monitoring that is active on this code object */ | |
| _Py_LocalMonitors active_monitors; | |
| /* The tools that are to be notified for events for the matching code unit */ | |
| uint8_t *tools; | |
| /* Information to support line events */ | |
| _PyCoLineInstrumentationData *lines; | |
| /* The tools that are to be notified for line events for the matching code unit */ | |
| uint8_t *line_tools; | |
| /* Information to support instruction events */ | |
| /* The underlying instructions, which can themselves be instrumented */ | |
| uint8_t *per_instruction_opcodes; | |
| /* The tools that are to be notified for instruction events for the matching code unit */ | |
| uint8_t *per_instruction_tools; | |
| } _PyCoMonitoringData; | |
| // To avoid repeating ourselves in deepfreeze.py, all PyCodeObject members are | |
| // defined in this macro: | |
| /* Bytecode object */ | |
| struct PyCodeObject _PyCode_DEF(1); | |
| /* Masks for co_flags above */ | |
| /* The CO_COROUTINE flag is set for coroutine functions (defined with | |
| ``async def`` keywords) */ | |
| /* bpo-39562: These constant values are changed in Python 3.9 | |
| to prevent collision with compiler flags. CO_FUTURE_ and PyCF_ | |
| constants must be kept unique. PyCF_ constants can use bits from | |
| 0x0100 to 0x10000. CO_FUTURE_ constants use bits starting at 0x20000. */ | |
| /* This should be defined if a future statement modifies the syntax. | |
| For example, when a keyword is added. | |
| */ | |
| PyAPI_DATA(PyTypeObject) PyCode_Type; | |
| static inline Py_ssize_t PyCode_GetNumFree(PyCodeObject *op) { | |
| assert(PyCode_Check(op)); | |
| return op->co_nfreevars; | |
| } | |
| static inline int PyUnstable_Code_GetFirstFree(PyCodeObject *op) { | |
| assert(PyCode_Check(op)); | |
| return op->co_nlocalsplus - op->co_nfreevars; | |
| } | |
| Py_DEPRECATED(3.13) static inline int PyCode_GetFirstFree(PyCodeObject *op) { | |
| return PyUnstable_Code_GetFirstFree(op); | |
| } | |
| /* Unstable public interface */ | |
| PyAPI_FUNC(PyCodeObject *) PyUnstable_Code_New( | |
| int, int, int, int, int, PyObject *, PyObject *, | |
| PyObject *, PyObject *, PyObject *, PyObject *, | |
| PyObject *, PyObject *, PyObject *, int, PyObject *, | |
| PyObject *); | |
| PyAPI_FUNC(PyCodeObject *) PyUnstable_Code_NewWithPosOnlyArgs( | |
| int, int, int, int, int, int, PyObject *, PyObject *, | |
| PyObject *, PyObject *, PyObject *, PyObject *, | |
| PyObject *, PyObject *, PyObject *, int, PyObject *, | |
| PyObject *); | |
| /* same as struct above */ | |
| // Old names -- remove when this API changes: | |
| _Py_DEPRECATED_EXTERNALLY(3.12) static inline PyCodeObject * | |
| PyCode_New( | |
| int a, int b, int c, int d, int e, PyObject *f, PyObject *g, | |
| PyObject *h, PyObject *i, PyObject *j, PyObject *k, | |
| PyObject *l, PyObject *m, PyObject *n, int o, PyObject *p, | |
| PyObject *q) | |
| { | |
| return PyUnstable_Code_New( | |
| a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q); | |
| } | |
| _Py_DEPRECATED_EXTERNALLY(3.12) static inline PyCodeObject * | |
| PyCode_NewWithPosOnlyArgs( | |
| int a, int poac, int b, int c, int d, int e, PyObject *f, PyObject *g, | |
| PyObject *h, PyObject *i, PyObject *j, PyObject *k, | |
| PyObject *l, PyObject *m, PyObject *n, int o, PyObject *p, | |
| PyObject *q) | |
| { | |
| return PyUnstable_Code_NewWithPosOnlyArgs( | |
| a, poac, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q); | |
| } | |
| /* Creates a new empty code object with the specified source location. */ | |
| PyAPI_FUNC(PyCodeObject *) | |
| PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno); | |
| /* Return the line number associated with the specified bytecode index | |
| in this code object. If you just need the line number of a frame, | |
| use PyFrame_GetLineNumber() instead. */ | |
| PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int); | |
| PyAPI_FUNC(int) PyCode_Addr2Location(PyCodeObject *, int, int *, int *, int *, int *); | |
| typedef enum { | |
| PY_FOREACH_CODE_EVENT(PY_DEF_EVENT) | |
| } PyCodeEvent; | |
| /* | |
| * A callback that is invoked for different events in a code object's lifecycle. | |
| * | |
| * The callback is invoked with a borrowed reference to co, after it is | |
| * created and before it is destroyed. | |
| * | |
| * If the callback sets an exception, it must return -1. Otherwise | |
| * it should return 0. | |
| */ | |
| typedef int (*PyCode_WatchCallback)( | |
| PyCodeEvent event, | |
| PyCodeObject* co); | |
| /* | |
| * Register a per-interpreter callback that will be invoked for code object | |
| * lifecycle events. | |
| * | |
| * Returns a handle that may be passed to PyCode_ClearWatcher on success, | |
| * or -1 and sets an error if no more handles are available. | |
| */ | |
| PyAPI_FUNC(int) PyCode_AddWatcher(PyCode_WatchCallback callback); | |
| /* | |
| * Clear the watcher associated with the watcher_id handle. | |
| * | |
| * Returns 0 on success or -1 if no watcher exists for the provided id. | |
| */ | |
| PyAPI_FUNC(int) PyCode_ClearWatcher(int watcher_id); | |
| /* for internal use only */ | |
| struct _opaque { | |
| int computed_line; | |
| const uint8_t *lo_next; | |
| const uint8_t *limit; | |
| }; | |
| typedef struct _line_offsets { | |
| int ar_start; | |
| int ar_end; | |
| int ar_line; | |
| struct _opaque opaque; | |
| } PyCodeAddressRange; | |
| /* Update *bounds to describe the first and one-past-the-last instructions in the | |
| same line as lasti. Return the number of that line. | |
| */ | |
| PyAPI_FUNC(int) _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds); | |
| /* Create a comparable key used to compare constants taking in account the | |
| * object type. It is used to make sure types are not coerced (e.g., float and | |
| * complex) _and_ to distinguish 0.0 from -0.0 e.g. on IEEE platforms | |
| * | |
| * Return (type(obj), obj, ...): a tuple with variable size (at least 2 items) | |
| * depending on the type and the value. The type is the first item to not | |
| * compare bytes and str which can raise a BytesWarning exception. */ | |
| PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj); | |
| PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts, | |
| PyObject *names, PyObject *lnotab); | |
| PyAPI_FUNC(int) PyUnstable_Code_GetExtra( | |
| PyObject *code, Py_ssize_t index, void **extra); | |
| PyAPI_FUNC(int) PyUnstable_Code_SetExtra( | |
| PyObject *code, Py_ssize_t index, void *extra); | |
| // Old names -- remove when this API changes: | |
| _Py_DEPRECATED_EXTERNALLY(3.12) static inline int | |
| _PyCode_GetExtra(PyObject *code, Py_ssize_t index, void **extra) | |
| { | |
| return PyUnstable_Code_GetExtra(code, index, extra); | |
| } | |
| _Py_DEPRECATED_EXTERNALLY(3.12) static inline int | |
| _PyCode_SetExtra(PyObject *code, Py_ssize_t index, void *extra) | |
| { | |
| return PyUnstable_Code_SetExtra(code, index, extra); | |
| } | |
| /* Equivalent to getattr(code, 'co_code') in Python. | |
| Returns a strong reference to a bytes object. */ | |
| PyAPI_FUNC(PyObject *) PyCode_GetCode(PyCodeObject *code); | |
| /* Equivalent to getattr(code, 'co_varnames') in Python. */ | |
| PyAPI_FUNC(PyObject *) PyCode_GetVarnames(PyCodeObject *code); | |
| /* Equivalent to getattr(code, 'co_cellvars') in Python. */ | |
| PyAPI_FUNC(PyObject *) PyCode_GetCellvars(PyCodeObject *code); | |
| /* Equivalent to getattr(code, 'co_freevars') in Python. */ | |
| PyAPI_FUNC(PyObject *) PyCode_GetFreevars(PyCodeObject *code); | |
| typedef enum _PyCodeLocationInfoKind { | |
| /* short forms are 0 to 9 */ | |
| PY_CODE_LOCATION_INFO_SHORT0 = 0, | |
| /* one lineforms are 10 to 12 */ | |
| PY_CODE_LOCATION_INFO_ONE_LINE0 = 10, | |
| PY_CODE_LOCATION_INFO_ONE_LINE1 = 11, | |
| PY_CODE_LOCATION_INFO_ONE_LINE2 = 12, | |
| PY_CODE_LOCATION_INFO_NO_COLUMNS = 13, | |
| PY_CODE_LOCATION_INFO_LONG = 14, | |
| PY_CODE_LOCATION_INFO_NONE = 15 | |
| } _PyCodeLocationInfoKind; | |
| } | |
Xet Storage Details
- Size:
- 15.2 kB
- Xet hash:
- b6a64d8b4618624ae50350524f8493d2e64e740a7f884c031a73ed0f336e32f1
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.