CoolFace
Apppublic

vidya7732/AI_Doctor_LLM_GenModel

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
code.h166 linesDownload Raw Back to cpython
1#ifndef Py_CPYTHON_CODE_H2#  error "this header file must not be included directly"3#endif4 5typedef uint16_t _Py_CODEUNIT;6 7#ifdef WORDS_BIGENDIAN8#  define _Py_OPCODE(word) ((word) >> 8)9#  define _Py_OPARG(word) ((word) & 255)10#else11#  define _Py_OPCODE(word) ((word) & 255)12#  define _Py_OPARG(word) ((word) >> 8)13#endif14 15typedef struct _PyOpcache _PyOpcache;16 17/* Bytecode object */18struct PyCodeObject {19    PyObject_HEAD20    int co_argcount;            /* #arguments, except *args */21    int co_posonlyargcount;     /* #positional only arguments */22    int co_kwonlyargcount;      /* #keyword only arguments */23    int co_nlocals;             /* #local variables */24    int co_stacksize;           /* #entries needed for evaluation stack */25    int co_flags;               /* CO_..., see below */26    int co_firstlineno;         /* first source line number */27    PyObject *co_code;          /* instruction opcodes */28    PyObject *co_consts;        /* list (constants used) */29    PyObject *co_names;         /* list of strings (names used) */30    PyObject *co_varnames;      /* tuple of strings (local variable names) */31    PyObject *co_freevars;      /* tuple of strings (free variable names) */32    PyObject *co_cellvars;      /* tuple of strings (cell variable names) */33    /* The rest aren't used in either hash or comparisons, except for co_name,34       used in both. This is done to preserve the name and line number35       for tracebacks and debuggers; otherwise, constant de-duplication36       would collapse identical functions/lambdas defined on different lines.37    */38    Py_ssize_t *co_cell2arg;    /* Maps cell vars which are arguments. */39    PyObject *co_filename;      /* unicode (where it was loaded from) */40    PyObject *co_name;          /* unicode (name, for reference) */41    PyObject *co_lnotab;        /* string (encoding addr<->lineno mapping) See42                                   Objects/lnotab_notes.txt for details. */43    void *co_zombieframe;       /* for optimization only (see frameobject.c) */44    PyObject *co_weakreflist;   /* to support weakrefs to code objects */45    /* Scratch space for extra data relating to the code object.46       Type is a void* to keep the format private in codeobject.c to force47       people to go through the proper APIs. */48    void *co_extra;49 50    /* Per opcodes just-in-time cache51     *52     * To reduce cache size, we use indirect mapping from opcode index to53     * cache object:54     *   cache = co_opcache[co_opcache_map[next_instr - first_instr] - 1]55     */56 57    // co_opcache_map is indexed by (next_instr - first_instr).58    //  * 0 means there is no cache for this opcode.59    //  * n > 0 means there is cache in co_opcache[n-1].60    unsigned char *co_opcache_map;61    _PyOpcache *co_opcache;62    int co_opcache_flag;  // used to determine when create a cache.63    unsigned char co_opcache_size;  // length of co_opcache.64};65 66/* Masks for co_flags above */67#define CO_OPTIMIZED    0x000168#define CO_NEWLOCALS    0x000269#define CO_VARARGS      0x000470#define CO_VARKEYWORDS  0x000871#define CO_NESTED       0x001072#define CO_GENERATOR    0x002073/* The CO_NOFREE flag is set if there are no free or cell variables.74   This information is redundant, but it allows a single flag test75   to determine whether there is any extra work to be done when the76   call frame it setup.77*/78#define CO_NOFREE       0x004079 80/* The CO_COROUTINE flag is set for coroutine functions (defined with81   ``async def`` keywords) */82#define CO_COROUTINE            0x008083#define CO_ITERABLE_COROUTINE   0x010084#define CO_ASYNC_GENERATOR      0x020085 86/* bpo-39562: These constant values are changed in Python 3.987   to prevent collision with compiler flags. CO_FUTURE_ and PyCF_88   constants must be kept unique. PyCF_ constants can use bits from89   0x0100 to 0x10000. CO_FUTURE_ constants use bits starting at 0x20000. */90#define CO_FUTURE_DIVISION      0x2000091#define CO_FUTURE_ABSOLUTE_IMPORT 0x40000 /* do absolute imports by default */92#define CO_FUTURE_WITH_STATEMENT  0x8000093#define CO_FUTURE_PRINT_FUNCTION  0x10000094#define CO_FUTURE_UNICODE_LITERALS 0x20000095 96#define CO_FUTURE_BARRY_AS_BDFL  0x40000097#define CO_FUTURE_GENERATOR_STOP  0x80000098#define CO_FUTURE_ANNOTATIONS    0x100000099 100/* This value is found in the co_cell2arg array when the associated cell101   variable does not correspond to an argument. */102#define CO_CELL_NOT_AN_ARG (-1)103 104/* This should be defined if a future statement modifies the syntax.105   For example, when a keyword is added.106*/107#define PY_PARSER_REQUIRES_FUTURE_KEYWORD108 109#define CO_MAXBLOCKS 20 /* Max static block nesting within a function */110 111PyAPI_DATA(PyTypeObject) PyCode_Type;112 113#define PyCode_Check(op) Py_IS_TYPE(op, &PyCode_Type)114#define PyCode_GetNumFree(op) (PyTuple_GET_SIZE((op)->co_freevars))115 116/* Public interface */117PyAPI_FUNC(PyCodeObject *) PyCode_New(118        int, int, int, int, int, PyObject *, PyObject *,119        PyObject *, PyObject *, PyObject *, PyObject *,120        PyObject *, PyObject *, int, PyObject *);121 122PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(123        int, int, int, int, int, int, PyObject *, PyObject *,124        PyObject *, PyObject *, PyObject *, PyObject *,125        PyObject *, PyObject *, int, PyObject *);126        /* same as struct above */127 128/* Creates a new empty code object with the specified source location. */129PyAPI_FUNC(PyCodeObject *)130PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);131 132/* Return the line number associated with the specified bytecode index133   in this code object.  If you just need the line number of a frame,134   use PyFrame_GetLineNumber() instead. */135PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);136 137/* for internal use only */138typedef struct _addr_pair {139        int ap_lower;140        int ap_upper;141} PyAddrPair;142 143/* Update *bounds to describe the first and one-past-the-last instructions in the144   same line as lasti.  Return the number of that line.145*/146PyAPI_FUNC(int) _PyCode_CheckLineNumber(PyCodeObject* co,147                                        int lasti, PyAddrPair *bounds);148 149/* Create a comparable key used to compare constants taking in account the150 * object type. It is used to make sure types are not coerced (e.g., float and151 * complex) _and_ to distinguish 0.0 from -0.0 e.g. on IEEE platforms152 *153 * Return (type(obj), obj, ...): a tuple with variable size (at least 2 items)154 * depending on the type and the value. The type is the first item to not155 * compare bytes and str which can raise a BytesWarning exception. */156PyAPI_FUNC(PyObject*) _PyCode_ConstantKey(PyObject *obj);157 158PyAPI_FUNC(PyObject*) PyCode_Optimize(PyObject *code, PyObject* consts,159                                      PyObject *names, PyObject *lnotab);160 161 162PyAPI_FUNC(int) _PyCode_GetExtra(PyObject *code, Py_ssize_t index,163                                 void **extra);164PyAPI_FUNC(int) _PyCode_SetExtra(PyObject *code, Py_ssize_t index,165                                 void *extra);166