zend_func_info.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend Engine, Func Info |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | https://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Dmitry Stogov <dmitry@php.net> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef ZEND_FUNC_INFO_H
  19. #define ZEND_FUNC_INFO_H
  20. #include "zend_ssa.h"
  21. /* func/cfg flags */
  22. #define ZEND_FUNC_INDIRECT_VAR_ACCESS (1<<0) /* accesses variables by name */
  23. #define ZEND_FUNC_HAS_CALLS (1<<1)
  24. #define ZEND_FUNC_VARARG (1<<2) /* uses func_get_args() */
  25. #define ZEND_FUNC_NO_LOOPS (1<<3)
  26. #define ZEND_FUNC_IRREDUCIBLE (1<<4)
  27. #define ZEND_FUNC_FREE_LOOP_VAR (1<<5)
  28. #define ZEND_FUNC_RECURSIVE (1<<7)
  29. #define ZEND_FUNC_RECURSIVE_DIRECTLY (1<<8)
  30. #define ZEND_FUNC_RECURSIVE_INDIRECTLY (1<<9)
  31. #define ZEND_FUNC_HAS_EXTENDED_FCALL (1<<10)
  32. #define ZEND_FUNC_HAS_EXTENDED_STMT (1<<11)
  33. #define ZEND_SSA_TSSA (1<<12) /* used by tracing JIT */
  34. #define ZEND_FUNC_JIT_ON_FIRST_EXEC (1<<13) /* used by JIT */
  35. #define ZEND_FUNC_JIT_ON_PROF_REQUEST (1<<14) /* used by JIT */
  36. #define ZEND_FUNC_JIT_ON_HOT_COUNTERS (1<<15) /* used by JIT */
  37. #define ZEND_FUNC_JIT_ON_HOT_TRACE (1<<16) /* used by JIT */
  38. typedef struct _zend_func_info zend_func_info;
  39. typedef struct _zend_call_info zend_call_info;
  40. #define ZEND_FUNC_INFO(op_array) \
  41. ((zend_func_info*)((op_array)->reserved[zend_func_info_rid]))
  42. #define ZEND_SET_FUNC_INFO(op_array, info) do { \
  43. zend_func_info** pinfo = (zend_func_info**)&(op_array)->reserved[zend_func_info_rid]; \
  44. *pinfo = info; \
  45. } while (0)
  46. BEGIN_EXTERN_C()
  47. extern ZEND_API int zend_func_info_rid;
  48. uint32_t zend_get_internal_func_info(
  49. const zend_function *callee_func, const zend_call_info *call_info, const zend_ssa *ssa);
  50. ZEND_API uint32_t zend_get_func_info(
  51. const zend_call_info *call_info, const zend_ssa *ssa,
  52. zend_class_entry **ce, bool *ce_is_instanceof);
  53. int zend_func_info_startup(void);
  54. int zend_func_info_shutdown(void);
  55. END_EXTERN_C()
  56. #endif /* ZEND_FUNC_INFO_H */