compile.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef Py_COMPILE_H
  2. #define Py_COMPILE_H
  3. #ifndef Py_LIMITED_API
  4. #include "code.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. /* Public interface */
  9. struct _node; /* Declare the existence of this type */
  10. PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
  11. /* Future feature support */
  12. typedef struct {
  13. int ff_features; /* flags set by future statements */
  14. int ff_lineno; /* line number of last future statement */
  15. } PyFutureFeatures;
  16. #define FUTURE_NESTED_SCOPES "nested_scopes"
  17. #define FUTURE_GENERATORS "generators"
  18. #define FUTURE_DIVISION "division"
  19. #define FUTURE_ABSOLUTE_IMPORT "absolute_import"
  20. #define FUTURE_WITH_STATEMENT "with_statement"
  21. #define FUTURE_PRINT_FUNCTION "print_function"
  22. #define FUTURE_UNICODE_LITERALS "unicode_literals"
  23. #define FUTURE_BARRY_AS_BDFL "barry_as_FLUFL"
  24. #define FUTURE_GENERATOR_STOP "generator_stop"
  25. struct _mod; /* Declare the existence of this type */
  26. #define PyAST_Compile(mod, s, f, ar) PyAST_CompileEx(mod, s, f, -1, ar)
  27. PyAPI_FUNC(PyCodeObject *) PyAST_CompileEx(
  28. struct _mod *mod,
  29. const char *filename, /* decoded from the filesystem encoding */
  30. PyCompilerFlags *flags,
  31. int optimize,
  32. PyArena *arena);
  33. PyAPI_FUNC(PyCodeObject *) PyAST_CompileObject(
  34. struct _mod *mod,
  35. PyObject *filename,
  36. PyCompilerFlags *flags,
  37. int optimize,
  38. PyArena *arena);
  39. PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromAST(
  40. struct _mod * mod,
  41. const char *filename /* decoded from the filesystem encoding */
  42. );
  43. PyAPI_FUNC(PyFutureFeatures *) PyFuture_FromASTObject(
  44. struct _mod * mod,
  45. PyObject *filename
  46. );
  47. /* _Py_Mangle is defined in compile.c */
  48. PyAPI_FUNC(PyObject*) _Py_Mangle(PyObject *p, PyObject *name);
  49. #define PY_INVALID_STACK_EFFECT INT_MAX
  50. PyAPI_FUNC(int) PyCompile_OpcodeStackEffect(int opcode, int oparg);
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #endif /* !Py_LIMITED_API */
  55. /* These definitions must match corresponding definitions in graminit.h.
  56. There's code in compile.c that checks that they are the same. */
  57. #define Py_single_input 256
  58. #define Py_file_input 257
  59. #define Py_eval_input 258
  60. #endif /* !Py_COMPILE_H */