-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcode_coverage.h
More file actions
82 lines (71 loc) · 3.49 KB
/
code_coverage.h
File metadata and controls
82 lines (71 loc) · 3.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2025 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| derick@xdebug.org so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef __XDEBUG_CODE_COVERAGE_H__
#define __XDEBUG_CODE_COVERAGE_H__
#include "lib/lib.h"
typedef struct xdebug_coverage_file {
zend_string *name;
xdebug_hash *lines;
xdebug_hash *functions; /* Used for branch coverage */
int has_branch_info;
} xdebug_coverage_file;
typedef struct _xdebug_coverage_globals_t {
zend_bool code_coverage_active; /* Whether code coverage is currently running */
xdebug_hash *code_coverage_info; /* Stores code coverage information */
zend_bool code_coverage_unused;
zend_bool code_coverage_dead_code_analysis;
zend_bool code_coverage_branch_check;
int dead_code_analysis_tracker_offset;
long dead_code_last_start_id;
long code_coverage_filter_offset;
size_t prefill_function_count;
size_t prefill_class_count;
zend_string *previous_filename;
xdebug_coverage_file *previous_file;
zend_string *previous_mark_filename;
xdebug_coverage_file *previous_mark_file;
xdebug_path_info *paths_stack;
#if PHP_VERSION_ID >= 80100
xdebug_hash *fiber_path_info_stacks;
#endif
xdebug_hash *visited_branches;
struct {
unsigned int size;
int *last_branch_nr;
} branches;
} xdebug_coverage_globals_t;
typedef struct _xdebug_coverage_settings_t {
int dummy;
} xdebug_coverage_settings_t;
void xdebug_init_coverage_globals(xdebug_coverage_globals_t *xg);
void xdebug_coverage_count_line_if_active(zend_op_array *op_array, zend_string *file, int lineno);
void xdebug_coverage_count_line_if_branch_check_active(zend_op_array *op_array, zend_string *file, int lineno);
void xdebug_coverage_record_if_active(zend_execute_data *execute_data, zend_op_array *op_array);
void xdebug_coverage_compile_file(zend_op_array *op_array);
int xdebug_coverage_execute_ex(function_stack_entry *fse, zend_op_array *op_array, zend_string **tmp_filename, char **tmp_function_name);
void xdebug_coverage_execute_ex_end(function_stack_entry *fse, zend_op_array *op_array, zend_string *tmp_filename, char *tmp_function_name);
void xdebug_coverage_init_oparray(zend_op_array *op_array);
void xdebug_coverage_minit(INIT_FUNC_ARGS);
void xdebug_coverage_mshutdown(void);
void xdebug_coverage_rinit(void);
void xdebug_coverage_post_deactivate(void);
void xdebug_coverage_register_constants(INIT_FUNC_ARGS);
PHP_FUNCTION(xdebug_start_code_coverage);
PHP_FUNCTION(xdebug_stop_code_coverage);
PHP_FUNCTION(xdebug_get_code_coverage);
PHP_FUNCTION(xdebug_code_coverage_started);
PHP_FUNCTION(xdebug_get_function_count);
#endif