compile.h 2.07 KB
Newer Older
1 2
#ifndef Py_COMPILE_H
#define Py_COMPILE_H
3

4
#ifndef Py_LIMITED_API
5 6
#include "code.h"

7 8 9 10
#ifdef __cplusplus
extern "C" {
#endif

Guido van Rossum's avatar
Guido van Rossum committed
11
/* Public interface */
12
struct _node; /* Declare the existence of this type */
13
PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
14

15 16 17
/* Future feature support */

typedef struct {
Jeremy Hylton's avatar
Jeremy Hylton committed
18 19
    int ff_features;      /* flags set by future statements */
    int ff_lineno;        /* line number of last future statement */
20 21 22
} PyFutureFeatures;

#define FUTURE_NESTED_SCOPES "nested_scopes"
23
#define FUTURE_GENERATORS "generators"
24
#define FUTURE_DIVISION "division"
25
#define FUTURE_ABSOLUTE_IMPORT "absolute_import"
26
#define FUTURE_WITH_STATEMENT "with_statement"
27
#define FUTURE_PRINT_FUNCTION "print_function"
28
#define FUTURE_UNICODE_LITERALS "unicode_literals"
29
#define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL"
30

Jeremy Hylton's avatar
Jeremy Hylton committed
31
struct _mod; /* Declare the existence of this type */
32
#define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
33
PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx(
34
    struct _mod *mod,
35 36 37 38
    const char *filename,       /* decoded from the filesystem encoding */
    PyCompilerFlags *flags,
    int optimize,
    PyArena *arena);
39 40 41 42 43 44 45 46 47 48 49 50 51 52
PyAPI_FUNC(PyCodeObject *) PyAST_CompileObject(
    struct _mod *mod,
    PyObject *filename,
    PyCompilerFlags *flags,
    int optimize,
    PyArena *arena);
PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(
    struct _mod * mod,
    const char *filename        /* decoded from the filesystem encoding */
    );
PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromASTObject(
    struct _mod * mod,
    PyObject *filename
    );
Jeremy Hylton's avatar
Jeremy Hylton committed
53

54 55
/* _Py_Mangle is defined in compile.c */
PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
Jeremy Hylton's avatar
Jeremy Hylton committed
56

57 58 59
#define PY_INVALID_STACK_EFFECT INT_MAX
PyAPI_FUNC(int) PyCompile_OpcodeStackEffect(int opcode, int oparg);

60 61 62
#ifdef __cplusplus
}
#endif
63

64
#endif /* !Py_LIMITED_API */
65 66 67 68 69 70 71 72

/* These definitions must match corresponding definitions in graminit.h.
   There's code in compile.c that checks that they are the same. */
#define Py_single_input 256
#define Py_file_input 257
#define Py_eval_input 258

#endif /* !Py_COMPILE_H */