mirror of
https://github.com/python/cpython.git
synced 2025-07-14 06:45:17 +00:00
gh-91719: Add pycore_opcode.h internal header file (#91906)
Move the following API from Include/opcode.h (public C API) to a new Include/internal/pycore_opcode.h header file (internal C API): * EXTRA_CASES * _PyOpcode_Caches * _PyOpcode_Deopt * _PyOpcode_Jump * _PyOpcode_OpName * _PyOpcode_RelativeJump
This commit is contained in:
parent
20cc695286
commit
64a54e511d
11 changed files with 661 additions and 605 deletions
|
@ -23,17 +23,18 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
|
||||
// Need _PyOpcode_RelativeJump of pycore_opcode.h
|
||||
#define NEED_OPCODE_TABLES
|
||||
|
||||
#include "Python.h"
|
||||
#include "pycore_ast.h" // _PyAST_GetDocString()
|
||||
#include "pycore_compile.h" // _PyFuture_FromAST()
|
||||
#include "pycore_code.h" // _PyCode_New()
|
||||
#include "pycore_pymem.h" // _PyMem_IsPtrFreed()
|
||||
#include "pycore_compile.h" // _PyFuture_FromAST()
|
||||
#include "pycore_long.h" // _PyLong_GetZero()
|
||||
#include "pycore_opcode.h" // _PyOpcode_Caches
|
||||
#include "pycore_pymem.h" // _PyMem_IsPtrFreed()
|
||||
#include "pycore_symtable.h" // PySTEntryObject
|
||||
|
||||
#define NEED_OPCODE_TABLES
|
||||
#include "opcode.h" // EXTENDED_ARG
|
||||
|
||||
|
||||
#define DEFAULT_BLOCK_SIZE 16
|
||||
#define DEFAULT_CODE_SIZE 128
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue