/src/cpython/Python/instrumentation.c
Line | Count | Source (jump to first uncovered line) |
1 | | #include "Python.h" |
2 | | #include "pycore_bitutils.h" // _Py_popcount32() |
3 | | #include "pycore_call.h" // _PyObject_VectorcallTstate() |
4 | | #include "pycore_ceval.h" // _PY_EVAL_EVENTS_BITS |
5 | | #include "pycore_code.h" // _PyCode_Clear_Executors() |
6 | | #include "pycore_critical_section.h" // _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED() |
7 | | #include "pycore_frame.h" // PyFrameObject |
8 | | #include "pycore_interpframe.h" // _PyFrame_GetBytecode() |
9 | | #include "pycore_long.h" // _PyLong_GetZero() |
10 | | #include "pycore_modsupport.h" // _PyModule_CreateInitialized() |
11 | | #include "pycore_namespace.h" // _PyNamespace_New() |
12 | | #include "pycore_opcode_metadata.h" // IS_VALID_OPCODE() |
13 | | #include "pycore_opcode_utils.h" // IS_CONDITIONAL_JUMP_OPCODE() |
14 | | #include "pycore_optimizer.h" // _PyExecutorObject |
15 | | #include "pycore_pyatomic_ft_wrappers.h" // FT_ATOMIC_STORE_UINTPTR_RELEASE() |
16 | | #include "pycore_pystate.h" // _PyInterpreterState_GET() |
17 | | #include "pycore_runtime_structs.h" // _PyCoMonitoringData |
18 | | #include "pycore_tuple.h" // _PyTuple_FromArraySteal() |
19 | | |
20 | | #include "opcode_ids.h" |
21 | | |
22 | | |
23 | | /* Uncomment this to dump debugging output when assertions fail */ |
24 | | // #define INSTRUMENT_DEBUG 1 |
25 | | |
26 | | #if defined(Py_DEBUG) && defined(Py_GIL_DISABLED) |
27 | | |
28 | | #define ASSERT_WORLD_STOPPED_OR_LOCKED(obj) \ |
29 | | if (!_PyInterpreterState_GET()->stoptheworld.world_stopped) { \ |
30 | | _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED(obj); \ |
31 | | } |
32 | | #define ASSERT_WORLD_STOPPED() assert(_PyInterpreterState_GET()->stoptheworld.world_stopped); |
33 | | |
34 | | #else |
35 | | |
36 | | #define ASSERT_WORLD_STOPPED_OR_LOCKED(obj) |
37 | | #define ASSERT_WORLD_STOPPED() |
38 | | |
39 | | #endif |
40 | | |
41 | | #ifdef Py_GIL_DISABLED |
42 | | |
43 | | #define LOCK_CODE(code) \ |
44 | | assert(!_PyInterpreterState_GET()->stoptheworld.world_stopped); \ |
45 | | Py_BEGIN_CRITICAL_SECTION(code) |
46 | | |
47 | | #define UNLOCK_CODE() Py_END_CRITICAL_SECTION() |
48 | | |
49 | | #define MODIFY_BYTECODE(code, func, ...) \ |
50 | | do { \ |
51 | | PyCodeObject *co = (code); \ |
52 | | for (Py_ssize_t i = 0; i < code->co_tlbc->size; i++) { \ |
53 | | char *bc = co->co_tlbc->entries[i]; \ |
54 | | if (bc == NULL) { \ |
55 | | continue; \ |
56 | | } \ |
57 | | (func)(code, (_Py_CODEUNIT *)bc, __VA_ARGS__); \ |
58 | | } \ |
59 | | } while (0) |
60 | | |
61 | | #else |
62 | | |
63 | | #define LOCK_CODE(code) |
64 | | #define UNLOCK_CODE() |
65 | | #define MODIFY_BYTECODE(code, func, ...) \ |
66 | 0 | (func)(code, _PyCode_CODE(code), __VA_ARGS__) |
67 | | |
68 | | #endif |
69 | | |
70 | | PyObject _PyInstrumentation_DISABLE = _PyObject_HEAD_INIT(&PyBaseObject_Type); |
71 | | |
72 | | PyObject _PyInstrumentation_MISSING = _PyObject_HEAD_INIT(&PyBaseObject_Type); |
73 | | |
74 | | static const int8_t EVENT_FOR_OPCODE[256] = { |
75 | | [RETURN_VALUE] = PY_MONITORING_EVENT_PY_RETURN, |
76 | | [INSTRUMENTED_RETURN_VALUE] = PY_MONITORING_EVENT_PY_RETURN, |
77 | | [CALL] = PY_MONITORING_EVENT_CALL, |
78 | | [INSTRUMENTED_CALL] = PY_MONITORING_EVENT_CALL, |
79 | | [CALL_KW] = PY_MONITORING_EVENT_CALL, |
80 | | [INSTRUMENTED_CALL_KW] = PY_MONITORING_EVENT_CALL, |
81 | | [CALL_FUNCTION_EX] = PY_MONITORING_EVENT_CALL, |
82 | | [INSTRUMENTED_CALL_FUNCTION_EX] = PY_MONITORING_EVENT_CALL, |
83 | | [LOAD_SUPER_ATTR] = PY_MONITORING_EVENT_CALL, |
84 | | [INSTRUMENTED_LOAD_SUPER_ATTR] = PY_MONITORING_EVENT_CALL, |
85 | | [RESUME] = -1, |
86 | | [YIELD_VALUE] = PY_MONITORING_EVENT_PY_YIELD, |
87 | | [INSTRUMENTED_YIELD_VALUE] = PY_MONITORING_EVENT_PY_YIELD, |
88 | | [JUMP_FORWARD] = PY_MONITORING_EVENT_JUMP, |
89 | | [JUMP_BACKWARD] = PY_MONITORING_EVENT_JUMP, |
90 | | [POP_JUMP_IF_FALSE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
91 | | [POP_JUMP_IF_TRUE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
92 | | [POP_JUMP_IF_NONE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
93 | | [POP_JUMP_IF_NOT_NONE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
94 | | [INSTRUMENTED_JUMP_FORWARD] = PY_MONITORING_EVENT_JUMP, |
95 | | [INSTRUMENTED_JUMP_BACKWARD] = PY_MONITORING_EVENT_JUMP, |
96 | | [INSTRUMENTED_POP_JUMP_IF_FALSE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
97 | | [INSTRUMENTED_POP_JUMP_IF_TRUE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
98 | | [INSTRUMENTED_POP_JUMP_IF_NONE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
99 | | [INSTRUMENTED_POP_JUMP_IF_NOT_NONE] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
100 | | [FOR_ITER] = PY_MONITORING_EVENT_BRANCH_LEFT, |
101 | | [INSTRUMENTED_FOR_ITER] = PY_MONITORING_EVENT_BRANCH_LEFT, |
102 | | [POP_ITER] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
103 | | [INSTRUMENTED_POP_ITER] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
104 | | [END_FOR] = PY_MONITORING_EVENT_STOP_ITERATION, |
105 | | [INSTRUMENTED_END_FOR] = PY_MONITORING_EVENT_STOP_ITERATION, |
106 | | [END_SEND] = PY_MONITORING_EVENT_STOP_ITERATION, |
107 | | [INSTRUMENTED_END_SEND] = PY_MONITORING_EVENT_STOP_ITERATION, |
108 | | [NOT_TAKEN] = PY_MONITORING_EVENT_BRANCH_LEFT, |
109 | | [INSTRUMENTED_NOT_TAKEN] = PY_MONITORING_EVENT_BRANCH_LEFT, |
110 | | [END_ASYNC_FOR] = PY_MONITORING_EVENT_BRANCH_RIGHT, |
111 | | }; |
112 | | |
113 | | static const uint8_t DE_INSTRUMENT[256] = { |
114 | | [INSTRUMENTED_RESUME] = RESUME, |
115 | | [INSTRUMENTED_RETURN_VALUE] = RETURN_VALUE, |
116 | | [INSTRUMENTED_CALL] = CALL, |
117 | | [INSTRUMENTED_CALL_KW] = CALL_KW, |
118 | | [INSTRUMENTED_CALL_FUNCTION_EX] = CALL_FUNCTION_EX, |
119 | | [INSTRUMENTED_YIELD_VALUE] = YIELD_VALUE, |
120 | | [INSTRUMENTED_JUMP_FORWARD] = JUMP_FORWARD, |
121 | | [INSTRUMENTED_JUMP_BACKWARD] = JUMP_BACKWARD, |
122 | | [INSTRUMENTED_POP_JUMP_IF_FALSE] = POP_JUMP_IF_FALSE, |
123 | | [INSTRUMENTED_POP_JUMP_IF_TRUE] = POP_JUMP_IF_TRUE, |
124 | | [INSTRUMENTED_POP_JUMP_IF_NONE] = POP_JUMP_IF_NONE, |
125 | | [INSTRUMENTED_POP_JUMP_IF_NOT_NONE] = POP_JUMP_IF_NOT_NONE, |
126 | | [INSTRUMENTED_FOR_ITER] = FOR_ITER, |
127 | | [INSTRUMENTED_POP_ITER] = POP_ITER, |
128 | | [INSTRUMENTED_END_FOR] = END_FOR, |
129 | | [INSTRUMENTED_END_SEND] = END_SEND, |
130 | | [INSTRUMENTED_LOAD_SUPER_ATTR] = LOAD_SUPER_ATTR, |
131 | | [INSTRUMENTED_NOT_TAKEN] = NOT_TAKEN, |
132 | | [INSTRUMENTED_END_ASYNC_FOR] = END_ASYNC_FOR, |
133 | | }; |
134 | | |
135 | | static const uint8_t INSTRUMENTED_OPCODES[256] = { |
136 | | [RETURN_VALUE] = INSTRUMENTED_RETURN_VALUE, |
137 | | [INSTRUMENTED_RETURN_VALUE] = INSTRUMENTED_RETURN_VALUE, |
138 | | [CALL] = INSTRUMENTED_CALL, |
139 | | [INSTRUMENTED_CALL] = INSTRUMENTED_CALL, |
140 | | [CALL_KW] = INSTRUMENTED_CALL_KW, |
141 | | [INSTRUMENTED_CALL_KW] = INSTRUMENTED_CALL_KW, |
142 | | [CALL_FUNCTION_EX] = INSTRUMENTED_CALL_FUNCTION_EX, |
143 | | [INSTRUMENTED_CALL_FUNCTION_EX] = INSTRUMENTED_CALL_FUNCTION_EX, |
144 | | [YIELD_VALUE] = INSTRUMENTED_YIELD_VALUE, |
145 | | [INSTRUMENTED_YIELD_VALUE] = INSTRUMENTED_YIELD_VALUE, |
146 | | [RESUME] = INSTRUMENTED_RESUME, |
147 | | [INSTRUMENTED_RESUME] = INSTRUMENTED_RESUME, |
148 | | [JUMP_FORWARD] = INSTRUMENTED_JUMP_FORWARD, |
149 | | [INSTRUMENTED_JUMP_FORWARD] = INSTRUMENTED_JUMP_FORWARD, |
150 | | [JUMP_BACKWARD] = INSTRUMENTED_JUMP_BACKWARD, |
151 | | [INSTRUMENTED_JUMP_BACKWARD] = INSTRUMENTED_JUMP_BACKWARD, |
152 | | [POP_JUMP_IF_FALSE] = INSTRUMENTED_POP_JUMP_IF_FALSE, |
153 | | [INSTRUMENTED_POP_JUMP_IF_FALSE] = INSTRUMENTED_POP_JUMP_IF_FALSE, |
154 | | [POP_JUMP_IF_TRUE] = INSTRUMENTED_POP_JUMP_IF_TRUE, |
155 | | [INSTRUMENTED_POP_JUMP_IF_TRUE] = INSTRUMENTED_POP_JUMP_IF_TRUE, |
156 | | [POP_JUMP_IF_NONE] = INSTRUMENTED_POP_JUMP_IF_NONE, |
157 | | [INSTRUMENTED_POP_JUMP_IF_NONE] = INSTRUMENTED_POP_JUMP_IF_NONE, |
158 | | [POP_JUMP_IF_NOT_NONE] = INSTRUMENTED_POP_JUMP_IF_NOT_NONE, |
159 | | [INSTRUMENTED_POP_JUMP_IF_NOT_NONE] = INSTRUMENTED_POP_JUMP_IF_NOT_NONE, |
160 | | [END_FOR] = INSTRUMENTED_END_FOR, |
161 | | [INSTRUMENTED_END_FOR] = INSTRUMENTED_END_FOR, |
162 | | [END_SEND] = INSTRUMENTED_END_SEND, |
163 | | [INSTRUMENTED_END_SEND] = INSTRUMENTED_END_SEND, |
164 | | [FOR_ITER] = INSTRUMENTED_FOR_ITER, |
165 | | [INSTRUMENTED_FOR_ITER] = INSTRUMENTED_FOR_ITER, |
166 | | [POP_ITER] = INSTRUMENTED_POP_ITER, |
167 | | [INSTRUMENTED_POP_ITER] = INSTRUMENTED_POP_ITER, |
168 | | [LOAD_SUPER_ATTR] = INSTRUMENTED_LOAD_SUPER_ATTR, |
169 | | [INSTRUMENTED_LOAD_SUPER_ATTR] = INSTRUMENTED_LOAD_SUPER_ATTR, |
170 | | [NOT_TAKEN] = INSTRUMENTED_NOT_TAKEN, |
171 | | [INSTRUMENTED_NOT_TAKEN] = INSTRUMENTED_NOT_TAKEN, |
172 | | [END_ASYNC_FOR] = INSTRUMENTED_END_ASYNC_FOR, |
173 | | [INSTRUMENTED_END_ASYNC_FOR] = INSTRUMENTED_END_ASYNC_FOR, |
174 | | |
175 | | [INSTRUMENTED_LINE] = INSTRUMENTED_LINE, |
176 | | [INSTRUMENTED_INSTRUCTION] = INSTRUMENTED_INSTRUCTION, |
177 | | }; |
178 | | |
179 | | static inline bool |
180 | | opcode_has_event(int opcode) |
181 | 0 | { |
182 | 0 | return ( |
183 | 0 | opcode != INSTRUMENTED_LINE && |
184 | 0 | INSTRUMENTED_OPCODES[opcode] > 0 |
185 | 0 | ); |
186 | 0 | } |
187 | | |
188 | | static inline bool |
189 | | is_instrumented(int opcode) |
190 | 0 | { |
191 | 0 | assert(opcode != 0); |
192 | 0 | assert(opcode != RESERVED); |
193 | 0 | return opcode != ENTER_EXECUTOR && opcode >= MIN_INSTRUMENTED_OPCODE; |
194 | 0 | } |
195 | | |
196 | | #ifndef NDEBUG |
197 | | static inline bool |
198 | | monitors_equals(_Py_LocalMonitors a, _Py_LocalMonitors b) |
199 | | { |
200 | | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
201 | | if (a.tools[i] != b.tools[i]) { |
202 | | return false; |
203 | | } |
204 | | } |
205 | | return true; |
206 | | } |
207 | | #endif |
208 | | |
209 | | static inline _Py_LocalMonitors |
210 | | monitors_sub(_Py_LocalMonitors a, _Py_LocalMonitors b) |
211 | 0 | { |
212 | 0 | _Py_LocalMonitors res; |
213 | 0 | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
214 | 0 | res.tools[i] = a.tools[i] & ~b.tools[i]; |
215 | 0 | } |
216 | 0 | return res; |
217 | 0 | } |
218 | | |
219 | | #ifndef NDEBUG |
220 | | static inline _Py_LocalMonitors |
221 | | monitors_and(_Py_LocalMonitors a, _Py_LocalMonitors b) |
222 | | { |
223 | | _Py_LocalMonitors res; |
224 | | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
225 | | res.tools[i] = a.tools[i] & b.tools[i]; |
226 | | } |
227 | | return res; |
228 | | } |
229 | | #endif |
230 | | |
231 | | /* The union of the *local* events in a and b. |
232 | | * Global events like RAISE are ignored. |
233 | | * Used for instrumentation, as only local |
234 | | * events get instrumented. |
235 | | */ |
236 | | static inline _Py_LocalMonitors |
237 | | local_union(_Py_GlobalMonitors a, _Py_LocalMonitors b) |
238 | 0 | { |
239 | 0 | _Py_LocalMonitors res; |
240 | 0 | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
241 | 0 | res.tools[i] = a.tools[i] | b.tools[i]; |
242 | 0 | } |
243 | 0 | return res; |
244 | 0 | } |
245 | | |
246 | | static inline bool |
247 | | monitors_are_empty(_Py_LocalMonitors m) |
248 | 0 | { |
249 | 0 | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
250 | 0 | if (m.tools[i]) { |
251 | 0 | return false; |
252 | 0 | } |
253 | 0 | } |
254 | 0 | return true; |
255 | 0 | } |
256 | | |
257 | | static inline bool |
258 | | multiple_tools(_Py_LocalMonitors *m) |
259 | 0 | { |
260 | 0 | for (int i = 0; i < _PY_MONITORING_LOCAL_EVENTS; i++) { |
261 | 0 | if (_Py_popcount32(m->tools[i]) > 1) { |
262 | 0 | return true; |
263 | 0 | } |
264 | 0 | } |
265 | 0 | return false; |
266 | 0 | } |
267 | | |
268 | | static inline _PyMonitoringEventSet |
269 | | get_local_events(_Py_LocalMonitors *m, int tool_id) |
270 | 0 | { |
271 | 0 | _PyMonitoringEventSet result = 0; |
272 | 0 | for (int e = 0; e < _PY_MONITORING_LOCAL_EVENTS; e++) { |
273 | 0 | if ((m->tools[e] >> tool_id) & 1) { |
274 | 0 | result |= (1 << e); |
275 | 0 | } |
276 | 0 | } |
277 | 0 | return result; |
278 | 0 | } |
279 | | |
280 | | static inline _PyMonitoringEventSet |
281 | | get_events(_Py_GlobalMonitors *m, int tool_id) |
282 | 0 | { |
283 | 0 | _PyMonitoringEventSet result = 0; |
284 | 0 | for (int e = 0; e < _PY_MONITORING_UNGROUPED_EVENTS; e++) { |
285 | 0 | if ((m->tools[e] >> tool_id) & 1) { |
286 | 0 | result |= (1 << e); |
287 | 0 | } |
288 | 0 | } |
289 | 0 | return result; |
290 | 0 | } |
291 | | |
292 | | /* Module code can have line 0, even though modules start at line 1, |
293 | | * so -1 is a legal delta. */ |
294 | 0 | #define NO_LINE (-2) |
295 | | |
296 | | /* Returns the line delta. Defined as: |
297 | | * if line is None: |
298 | | * line_delta = NO_LINE |
299 | | * else: |
300 | | * line_delta = line - first_line |
301 | | */ |
302 | | static int |
303 | | compute_line_delta(PyCodeObject *code, int line) |
304 | 0 | { |
305 | 0 | if (line < 0) { |
306 | 0 | assert(line == -1); |
307 | 0 | return NO_LINE; |
308 | 0 | } |
309 | 0 | int delta = line - code->co_firstlineno; |
310 | 0 | assert(delta > NO_LINE); |
311 | 0 | return delta; |
312 | 0 | } |
313 | | |
314 | | static int |
315 | | compute_line(PyCodeObject *code, int line_delta) |
316 | 0 | { |
317 | 0 | if (line_delta == NO_LINE) { |
318 | 0 | return -1; |
319 | 0 | } |
320 | 0 | assert(line_delta > NO_LINE); |
321 | 0 | return code->co_firstlineno + line_delta; |
322 | 0 | } |
323 | | |
324 | | int |
325 | | _PyInstruction_GetLength(PyCodeObject *code, int offset) |
326 | 0 | { |
327 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
328 | |
|
329 | 0 | _Py_CODEUNIT inst = _Py_GetBaseCodeUnit(code, offset); |
330 | 0 | return 1 + _PyOpcode_Caches[inst.op.code]; |
331 | 0 | } |
332 | | |
333 | | static inline uint8_t |
334 | | get_original_opcode(_PyCoLineInstrumentationData *line_data, int index) |
335 | 0 | { |
336 | 0 | return line_data->data[index*line_data->bytes_per_entry]; |
337 | 0 | } |
338 | | |
339 | | static inline uint8_t * |
340 | | get_original_opcode_ptr(_PyCoLineInstrumentationData *line_data, int index) |
341 | 0 | { |
342 | 0 | return &line_data->data[index*line_data->bytes_per_entry]; |
343 | 0 | } |
344 | | |
345 | | static inline void |
346 | | set_original_opcode(_PyCoLineInstrumentationData *line_data, int index, uint8_t opcode) |
347 | 0 | { |
348 | 0 | line_data->data[index*line_data->bytes_per_entry] = opcode; |
349 | 0 | } |
350 | | |
351 | | static inline int |
352 | | get_line_delta(_PyCoLineInstrumentationData *line_data, int index) |
353 | 0 | { |
354 | 0 | uint8_t *ptr = &line_data->data[index*line_data->bytes_per_entry+1]; |
355 | 0 | assert(line_data->bytes_per_entry >= 2); |
356 | 0 | uint32_t value = *ptr; |
357 | 0 | for (int idx = 2; idx < line_data->bytes_per_entry; idx++) { |
358 | 0 | ptr++; |
359 | 0 | int shift = (idx-1)*8; |
360 | 0 | value |= ((uint32_t)(*ptr)) << shift; |
361 | 0 | } |
362 | 0 | assert(value < INT_MAX); |
363 | | /* NO_LINE is stored as zero. */ |
364 | 0 | return ((int)value) + NO_LINE; |
365 | 0 | } |
366 | | |
367 | | static inline void |
368 | | set_line_delta(_PyCoLineInstrumentationData *line_data, int index, int line_delta) |
369 | 0 | { |
370 | | /* Store line_delta + 2 as we need -2 to represent no line number */ |
371 | 0 | assert(line_delta >= NO_LINE); |
372 | 0 | uint32_t adjusted = line_delta - NO_LINE; |
373 | 0 | uint8_t *ptr = &line_data->data[index*line_data->bytes_per_entry+1]; |
374 | 0 | assert(adjusted < (1ULL << ((line_data->bytes_per_entry-1)*8))); |
375 | 0 | assert(line_data->bytes_per_entry >= 2); |
376 | 0 | *ptr = adjusted & 0xff; |
377 | 0 | for (int idx = 2; idx < line_data->bytes_per_entry; idx++) { |
378 | 0 | ptr++; |
379 | 0 | adjusted >>= 8; |
380 | 0 | *ptr = adjusted & 0xff; |
381 | 0 | } |
382 | 0 | } |
383 | | |
384 | | #ifdef INSTRUMENT_DEBUG |
385 | | |
386 | | static void |
387 | | dump_instrumentation_data_tools(PyCodeObject *code, uint8_t *tools, int i, FILE*out) |
388 | | { |
389 | | if (tools == NULL) { |
390 | | fprintf(out, "tools = NULL"); |
391 | | } |
392 | | else { |
393 | | fprintf(out, "tools = %d", tools[i]); |
394 | | } |
395 | | } |
396 | | |
397 | | static void |
398 | | dump_instrumentation_data_lines(PyCodeObject *code, _PyCoLineInstrumentationData *lines, int i, FILE*out) |
399 | | { |
400 | | if (lines == NULL) { |
401 | | fprintf(out, ", lines = NULL"); |
402 | | } |
403 | | else { |
404 | | int opcode = get_original_opcode(lines, i); |
405 | | int line_delta = get_line_delta(lines, i); |
406 | | if (opcode == 0) { |
407 | | fprintf(out, ", lines = {original_opcode = No LINE (0), line_delta = %d)", line_delta); |
408 | | } |
409 | | else { |
410 | | fprintf(out, ", lines = {original_opcode = %s, line_delta = %d)", _PyOpcode_OpName[opcode], line_delta); |
411 | | } |
412 | | } |
413 | | } |
414 | | |
415 | | static void |
416 | | dump_instrumentation_data_line_tools(PyCodeObject *code, uint8_t *line_tools, int i, FILE*out) |
417 | | { |
418 | | if (line_tools == NULL) { |
419 | | fprintf(out, ", line_tools = NULL"); |
420 | | } |
421 | | else { |
422 | | fprintf(out, ", line_tools = %d", line_tools[i]); |
423 | | } |
424 | | } |
425 | | |
426 | | static void |
427 | | dump_instrumentation_data_per_instruction(PyCodeObject *code, _PyCoMonitoringData *data, int i, FILE*out) |
428 | | { |
429 | | if (data->per_instruction_opcodes == NULL) { |
430 | | fprintf(out, ", per-inst opcode = NULL"); |
431 | | } |
432 | | else { |
433 | | fprintf(out, ", per-inst opcode = %s", _PyOpcode_OpName[data->per_instruction_opcodes[i]]); |
434 | | } |
435 | | if (data->per_instruction_tools == NULL) { |
436 | | fprintf(out, ", per-inst tools = NULL"); |
437 | | } |
438 | | else { |
439 | | fprintf(out, ", per-inst tools = %d", data->per_instruction_tools[i]); |
440 | | } |
441 | | } |
442 | | |
443 | | static void |
444 | | dump_global_monitors(const char *prefix, _Py_GlobalMonitors monitors, FILE*out) |
445 | | { |
446 | | fprintf(out, "%s monitors:\n", prefix); |
447 | | for (int event = 0; event < _PY_MONITORING_UNGROUPED_EVENTS; event++) { |
448 | | fprintf(out, " Event %d: Tools %x\n", event, monitors.tools[event]); |
449 | | } |
450 | | } |
451 | | |
452 | | static void |
453 | | dump_local_monitors(const char *prefix, _Py_LocalMonitors monitors, FILE*out) |
454 | | { |
455 | | fprintf(out, "%s monitors:\n", prefix); |
456 | | for (int event = 0; event < _PY_MONITORING_LOCAL_EVENTS; event++) { |
457 | | fprintf(out, " Event %d: Tools %x\n", event, monitors.tools[event]); |
458 | | } |
459 | | } |
460 | | |
461 | | /** NOTE: |
462 | | * Do not use PyCode_Addr2Line to determine the line number in instrumentation, |
463 | | * as `PyCode_Addr2Line` uses the monitoring data if it is available. |
464 | | */ |
465 | | |
466 | | |
467 | | /* No error checking -- Don't use this for anything but experimental debugging */ |
468 | | static void |
469 | | dump_instrumentation_data(PyCodeObject *code, int star, FILE*out) |
470 | | { |
471 | | _PyCoMonitoringData *data = code->_co_monitoring; |
472 | | fprintf(out, "\n"); |
473 | | PyObject_Print(code->co_name, out, Py_PRINT_RAW); |
474 | | fprintf(out, "\n"); |
475 | | if (data == NULL) { |
476 | | fprintf(out, "NULL\n"); |
477 | | return; |
478 | | } |
479 | | dump_global_monitors("Global", _PyInterpreterState_GET()->monitors, out); |
480 | | dump_local_monitors("Code", data->local_monitors, out); |
481 | | dump_local_monitors("Active", data->active_monitors, out); |
482 | | int code_len = (int)Py_SIZE(code); |
483 | | bool starred = false; |
484 | | PyCodeAddressRange range; |
485 | | _PyCode_InitAddressRange(code, &range); |
486 | | for (int i = 0; i < code_len; i += _PyInstruction_GetLength(code, i)) { |
487 | | _Py_CODEUNIT *instr = &_PyCode_CODE(code)[i]; |
488 | | int opcode = instr->op.code; |
489 | | if (i == star) { |
490 | | fprintf(out, "** "); |
491 | | starred = true; |
492 | | } |
493 | | fprintf(out, "Offset: %d, line: %d %s: ", i, _PyCode_CheckLineNumber(i*2, &range), _PyOpcode_OpName[opcode]); |
494 | | dump_instrumentation_data_tools(code, data->tools, i, out); |
495 | | dump_instrumentation_data_lines(code, data->lines, i, out); |
496 | | dump_instrumentation_data_line_tools(code, data->line_tools, i, out); |
497 | | dump_instrumentation_data_per_instruction(code, data, i, out); |
498 | | fprintf(out, "\n"); |
499 | | ; |
500 | | } |
501 | | if (!starred && star >= 0) { |
502 | | fprintf(out, "Error offset not at valid instruction offset: %d\n", star); |
503 | | fprintf(out, " "); |
504 | | dump_instrumentation_data_tools(code, data->tools, star, out); |
505 | | dump_instrumentation_data_lines(code, data->lines, star, out); |
506 | | dump_instrumentation_data_line_tools(code, data->line_tools, star, out); |
507 | | dump_instrumentation_data_per_instruction(code, data, star, out); |
508 | | fprintf(out, "\n"); |
509 | | } |
510 | | } |
511 | | |
512 | | #define CHECK(test) do { \ |
513 | | if (!(test)) { \ |
514 | | dump_instrumentation_data(code, i, stderr); \ |
515 | | } \ |
516 | | assert(test); \ |
517 | | } while (0) |
518 | | |
519 | | static bool |
520 | | valid_opcode(int opcode) |
521 | | { |
522 | | if (opcode == INSTRUMENTED_LINE) { |
523 | | return true; |
524 | | } |
525 | | if (IS_VALID_OPCODE(opcode) && |
526 | | opcode != CACHE && |
527 | | opcode != RESERVED && |
528 | | opcode < 255) |
529 | | { |
530 | | return true; |
531 | | } |
532 | | return false; |
533 | | } |
534 | | |
535 | | static void |
536 | | sanity_check_instrumentation(PyCodeObject *code) |
537 | | { |
538 | | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
539 | | |
540 | | _PyCoMonitoringData *data = code->_co_monitoring; |
541 | | if (data == NULL) { |
542 | | return; |
543 | | } |
544 | | _Py_GlobalMonitors global_monitors = _PyInterpreterState_GET()->monitors; |
545 | | _Py_LocalMonitors active_monitors; |
546 | | if (code->_co_monitoring) { |
547 | | _Py_LocalMonitors local_monitors = code->_co_monitoring->local_monitors; |
548 | | active_monitors = local_union(global_monitors, local_monitors); |
549 | | } |
550 | | else { |
551 | | _Py_LocalMonitors empty = (_Py_LocalMonitors) { 0 }; |
552 | | active_monitors = local_union(global_monitors, empty); |
553 | | } |
554 | | assert(monitors_equals( |
555 | | code->_co_monitoring->active_monitors, |
556 | | active_monitors)); |
557 | | int code_len = (int)Py_SIZE(code); |
558 | | PyCodeAddressRange range; |
559 | | _PyCode_InitAddressRange(co, &range); |
560 | | for (int i = 0; i < code_len;) { |
561 | | _Py_CODEUNIT *instr = &_PyCode_CODE(code)[i]; |
562 | | int opcode = instr->op.code; |
563 | | int base_opcode = _Py_GetBaseCodeUnit(code, i).op.code; |
564 | | CHECK(valid_opcode(opcode)); |
565 | | CHECK(valid_opcode(base_opcode)); |
566 | | if (opcode == INSTRUMENTED_INSTRUCTION) { |
567 | | opcode = data->per_instruction_opcodes[i]; |
568 | | if (!is_instrumented(opcode)) { |
569 | | CHECK(_PyOpcode_Deopt[opcode] == opcode); |
570 | | } |
571 | | } |
572 | | if (opcode == INSTRUMENTED_LINE) { |
573 | | CHECK(data->lines); |
574 | | opcode = get_original_opcode(data->lines, i); |
575 | | CHECK(valid_opcode(opcode)); |
576 | | CHECK(opcode != END_FOR); |
577 | | CHECK(opcode != RESUME); |
578 | | CHECK(opcode != RESUME_CHECK); |
579 | | CHECK(opcode != INSTRUMENTED_RESUME); |
580 | | if (!is_instrumented(opcode)) { |
581 | | CHECK(_PyOpcode_Deopt[opcode] == opcode); |
582 | | } |
583 | | CHECK(opcode != INSTRUMENTED_LINE); |
584 | | } |
585 | | else if (data->lines) { |
586 | | /* If original_opcode is INSTRUMENTED_INSTRUCTION |
587 | | * *and* we are executing a INSTRUMENTED_LINE instruction |
588 | | * that has de-instrumented itself, then we will execute |
589 | | * an invalid INSTRUMENTED_INSTRUCTION */ |
590 | | CHECK(get_original_opcode(data->lines, i) != INSTRUMENTED_INSTRUCTION); |
591 | | } |
592 | | if (opcode == INSTRUMENTED_INSTRUCTION) { |
593 | | CHECK(data->per_instruction_opcodes[i] != 0); |
594 | | opcode = data->per_instruction_opcodes[i]; |
595 | | } |
596 | | if (is_instrumented(opcode)) { |
597 | | CHECK(DE_INSTRUMENT[opcode] == base_opcode); |
598 | | int event = EVENT_FOR_OPCODE[DE_INSTRUMENT[opcode]]; |
599 | | if (event < 0) { |
600 | | /* RESUME fixup */ |
601 | | event = instr->op.arg ? 1: 0; |
602 | | } |
603 | | CHECK(active_monitors.tools[event] != 0); |
604 | | } |
605 | | if (data->lines && get_original_opcode(data->lines, i)) { |
606 | | int line1 = compute_line(code, get_line_delta(data->lines, i)); |
607 | | int line2 = _PyCode_CheckLineNumber(i*sizeof(_Py_CODEUNIT), &range); |
608 | | CHECK(line1 == line2); |
609 | | } |
610 | | CHECK(valid_opcode(opcode)); |
611 | | if (data->tools) { |
612 | | uint8_t local_tools = data->tools[i]; |
613 | | if (opcode_has_event(base_opcode)) { |
614 | | int event = EVENT_FOR_OPCODE[base_opcode]; |
615 | | if (event == -1) { |
616 | | /* RESUME fixup */ |
617 | | event = _PyCode_CODE(code)[i].op.arg; |
618 | | } |
619 | | CHECK((active_monitors.tools[event] & local_tools) == local_tools); |
620 | | } |
621 | | else { |
622 | | CHECK(local_tools == 0xff); |
623 | | } |
624 | | } |
625 | | i += _PyInstruction_GetLength(code, i); |
626 | | assert(i <= code_len); |
627 | | } |
628 | | } |
629 | | #else |
630 | | |
631 | 0 | #define CHECK(test) assert(test) |
632 | | |
633 | | #endif |
634 | | |
635 | | /* Get the underlying code unit, stripping instrumentation and ENTER_EXECUTOR */ |
636 | | _Py_CODEUNIT |
637 | | _Py_GetBaseCodeUnit(PyCodeObject *code, int i) |
638 | 1.42M | { |
639 | 1.42M | _Py_CODEUNIT *src_instr = _PyCode_CODE(code) + i; |
640 | 1.42M | _Py_CODEUNIT inst = { |
641 | 1.42M | .cache = FT_ATOMIC_LOAD_UINT16_RELAXED(*(uint16_t *)src_instr)}; |
642 | 1.42M | int opcode = inst.op.code; |
643 | 1.42M | if (opcode < MIN_INSTRUMENTED_OPCODE) { |
644 | 1.42M | inst.op.code = _PyOpcode_Deopt[opcode]; |
645 | 1.42M | assert(inst.op.code < MIN_SPECIALIZED_OPCODE); |
646 | 1.42M | return inst; |
647 | 1.42M | } |
648 | 0 | if (opcode == ENTER_EXECUTOR) { |
649 | 0 | _PyExecutorObject *exec = code->co_executors->executors[inst.op.arg]; |
650 | 0 | opcode = _PyOpcode_Deopt[exec->vm_data.opcode]; |
651 | 0 | inst.op.code = opcode; |
652 | 0 | inst.op.arg = exec->vm_data.oparg; |
653 | 0 | assert(inst.op.code < MIN_SPECIALIZED_OPCODE); |
654 | 0 | return inst; |
655 | 0 | } |
656 | 0 | if (opcode == INSTRUMENTED_LINE) { |
657 | 0 | opcode = get_original_opcode(code->_co_monitoring->lines, i); |
658 | 0 | } |
659 | 0 | if (opcode == INSTRUMENTED_INSTRUCTION) { |
660 | 0 | opcode = code->_co_monitoring->per_instruction_opcodes[i]; |
661 | 0 | } |
662 | 0 | CHECK(opcode != INSTRUMENTED_INSTRUCTION); |
663 | 0 | CHECK(opcode != INSTRUMENTED_LINE); |
664 | 0 | int deinstrumented = DE_INSTRUMENT[opcode]; |
665 | 0 | if (deinstrumented) { |
666 | 0 | inst.op.code = deinstrumented; |
667 | 0 | } |
668 | 0 | else { |
669 | 0 | inst.op.code = _PyOpcode_Deopt[opcode]; |
670 | 0 | } |
671 | 0 | assert(inst.op.code < MIN_SPECIALIZED_OPCODE); |
672 | 0 | return inst; |
673 | 0 | } |
674 | | |
675 | | static void |
676 | | de_instrument(PyCodeObject *code, _Py_CODEUNIT *bytecode, _PyCoMonitoringData *monitoring, int i, |
677 | | int event) |
678 | 0 | { |
679 | 0 | assert(event != PY_MONITORING_EVENT_INSTRUCTION); |
680 | 0 | assert(event != PY_MONITORING_EVENT_LINE); |
681 | |
|
682 | 0 | _Py_CODEUNIT *instr = &bytecode[i]; |
683 | 0 | uint8_t *opcode_ptr = &instr->op.code; |
684 | 0 | int opcode = *opcode_ptr; |
685 | 0 | assert(opcode != ENTER_EXECUTOR); |
686 | 0 | if (opcode == INSTRUMENTED_LINE) { |
687 | 0 | opcode_ptr = get_original_opcode_ptr(monitoring->lines, i); |
688 | 0 | opcode = *opcode_ptr; |
689 | 0 | } |
690 | 0 | if (opcode == INSTRUMENTED_INSTRUCTION) { |
691 | 0 | opcode_ptr = &monitoring->per_instruction_opcodes[i]; |
692 | 0 | opcode = *opcode_ptr; |
693 | 0 | } |
694 | 0 | int deinstrumented = DE_INSTRUMENT[opcode]; |
695 | 0 | if (deinstrumented == 0) { |
696 | 0 | return; |
697 | 0 | } |
698 | 0 | CHECK(_PyOpcode_Deopt[deinstrumented] == deinstrumented); |
699 | 0 | FT_ATOMIC_STORE_UINT8_RELAXED(*opcode_ptr, deinstrumented); |
700 | 0 | if (_PyOpcode_Caches[deinstrumented]) { |
701 | 0 | FT_ATOMIC_STORE_UINT16_RELAXED(instr[1].counter.value_and_backoff, |
702 | 0 | adaptive_counter_warmup().value_and_backoff); |
703 | 0 | } |
704 | 0 | } |
705 | | |
706 | | static void |
707 | | de_instrument_line(PyCodeObject *code, _Py_CODEUNIT *bytecode, _PyCoMonitoringData *monitoring, |
708 | | int i) |
709 | 0 | { |
710 | 0 | _Py_CODEUNIT *instr = &bytecode[i]; |
711 | 0 | int opcode = instr->op.code; |
712 | 0 | if (opcode != INSTRUMENTED_LINE) { |
713 | 0 | return; |
714 | 0 | } |
715 | 0 | _PyCoLineInstrumentationData *lines = monitoring->lines; |
716 | 0 | int original_opcode = get_original_opcode(lines, i); |
717 | 0 | if (original_opcode == INSTRUMENTED_INSTRUCTION) { |
718 | 0 | set_original_opcode(lines, i, monitoring->per_instruction_opcodes[i]); |
719 | 0 | } |
720 | 0 | CHECK(original_opcode != 0); |
721 | 0 | CHECK(original_opcode == _PyOpcode_Deopt[original_opcode]); |
722 | 0 | FT_ATOMIC_STORE_UINT8(instr->op.code, original_opcode); |
723 | 0 | if (_PyOpcode_Caches[original_opcode]) { |
724 | 0 | FT_ATOMIC_STORE_UINT16_RELAXED(instr[1].counter.value_and_backoff, |
725 | 0 | adaptive_counter_warmup().value_and_backoff); |
726 | 0 | } |
727 | 0 | assert(instr->op.code != INSTRUMENTED_LINE); |
728 | 0 | } |
729 | | |
730 | | static void |
731 | | de_instrument_per_instruction(PyCodeObject *code, _Py_CODEUNIT *bytecode, |
732 | | _PyCoMonitoringData *monitoring, int i) |
733 | 0 | { |
734 | 0 | _Py_CODEUNIT *instr = &bytecode[i]; |
735 | 0 | uint8_t *opcode_ptr = &instr->op.code; |
736 | 0 | int opcode = *opcode_ptr; |
737 | 0 | if (opcode == INSTRUMENTED_LINE) { |
738 | 0 | opcode_ptr = get_original_opcode_ptr(monitoring->lines, i); |
739 | 0 | opcode = *opcode_ptr; |
740 | 0 | } |
741 | 0 | if (opcode != INSTRUMENTED_INSTRUCTION) { |
742 | 0 | return; |
743 | 0 | } |
744 | 0 | int original_opcode = monitoring->per_instruction_opcodes[i]; |
745 | 0 | CHECK(original_opcode != 0); |
746 | 0 | CHECK(original_opcode == _PyOpcode_Deopt[original_opcode]); |
747 | 0 | FT_ATOMIC_STORE_UINT8_RELAXED(*opcode_ptr, original_opcode); |
748 | 0 | if (_PyOpcode_Caches[original_opcode]) { |
749 | 0 | FT_ATOMIC_STORE_UINT16_RELAXED(instr[1].counter.value_and_backoff, |
750 | 0 | adaptive_counter_warmup().value_and_backoff); |
751 | 0 | } |
752 | 0 | assert(*opcode_ptr != INSTRUMENTED_INSTRUCTION); |
753 | 0 | assert(instr->op.code != INSTRUMENTED_INSTRUCTION); |
754 | 0 | } |
755 | | |
756 | | static void |
757 | | instrument(PyCodeObject *code, _Py_CODEUNIT *bytecode, _PyCoMonitoringData *monitoring, int i) |
758 | 0 | { |
759 | 0 | _Py_CODEUNIT *instr = &bytecode[i]; |
760 | 0 | uint8_t *opcode_ptr = &instr->op.code; |
761 | 0 | int opcode =*opcode_ptr; |
762 | 0 | if (opcode == INSTRUMENTED_LINE) { |
763 | 0 | opcode_ptr = get_original_opcode_ptr(monitoring->lines, i); |
764 | 0 | opcode = *opcode_ptr; |
765 | 0 | } |
766 | 0 | if (opcode == INSTRUMENTED_INSTRUCTION) { |
767 | 0 | opcode_ptr = &monitoring->per_instruction_opcodes[i]; |
768 | 0 | opcode = *opcode_ptr; |
769 | 0 | CHECK(opcode != INSTRUMENTED_INSTRUCTION && opcode != INSTRUMENTED_LINE); |
770 | 0 | CHECK(opcode == _PyOpcode_Deopt[opcode]); |
771 | 0 | } |
772 | 0 | CHECK(opcode != 0); |
773 | 0 | if (!is_instrumented(opcode)) { |
774 | 0 | int deopt = _PyOpcode_Deopt[opcode]; |
775 | 0 | int instrumented = INSTRUMENTED_OPCODES[deopt]; |
776 | 0 | assert(instrumented); |
777 | 0 | FT_ATOMIC_STORE_UINT8_RELAXED(*opcode_ptr, instrumented); |
778 | 0 | if (_PyOpcode_Caches[deopt]) { |
779 | 0 | FT_ATOMIC_STORE_UINT16_RELAXED(instr[1].counter.value_and_backoff, |
780 | 0 | adaptive_counter_warmup().value_and_backoff); |
781 | 0 | } |
782 | 0 | } |
783 | 0 | } |
784 | | |
785 | | static void |
786 | | instrument_line(PyCodeObject *code, _Py_CODEUNIT *bytecode, _PyCoMonitoringData *monitoring, int i) |
787 | 0 | { |
788 | 0 | uint8_t *opcode_ptr = &bytecode[i].op.code; |
789 | 0 | int opcode = *opcode_ptr; |
790 | 0 | if (opcode == INSTRUMENTED_LINE) { |
791 | 0 | return; |
792 | 0 | } |
793 | 0 | set_original_opcode(monitoring->lines, i, _PyOpcode_Deopt[opcode]); |
794 | 0 | CHECK(get_line_delta(monitoring->lines, i) > NO_LINE); |
795 | 0 | FT_ATOMIC_STORE_UINT8_RELAXED(*opcode_ptr, INSTRUMENTED_LINE); |
796 | 0 | } |
797 | | |
798 | | static void |
799 | | instrument_per_instruction(PyCodeObject *code, _Py_CODEUNIT *bytecode, |
800 | | _PyCoMonitoringData *monitoring, int i) |
801 | 0 | { |
802 | 0 | _Py_CODEUNIT *instr = &bytecode[i]; |
803 | 0 | uint8_t *opcode_ptr = &instr->op.code; |
804 | 0 | int opcode = *opcode_ptr; |
805 | 0 | if (opcode == INSTRUMENTED_LINE) { |
806 | 0 | opcode_ptr = get_original_opcode_ptr(monitoring->lines, i); |
807 | 0 | opcode = *opcode_ptr; |
808 | 0 | } |
809 | 0 | if (opcode == INSTRUMENTED_INSTRUCTION) { |
810 | 0 | assert(monitoring->per_instruction_opcodes[i] > 0); |
811 | 0 | return; |
812 | 0 | } |
813 | 0 | CHECK(opcode != 0); |
814 | 0 | if (is_instrumented(opcode)) { |
815 | 0 | monitoring->per_instruction_opcodes[i] = opcode; |
816 | 0 | } |
817 | 0 | else { |
818 | 0 | assert(opcode != 0); |
819 | 0 | assert(_PyOpcode_Deopt[opcode] != 0); |
820 | 0 | assert(_PyOpcode_Deopt[opcode] != RESUME); |
821 | 0 | monitoring->per_instruction_opcodes[i] = _PyOpcode_Deopt[opcode]; |
822 | 0 | } |
823 | 0 | assert(monitoring->per_instruction_opcodes[i] > 0); |
824 | 0 | FT_ATOMIC_STORE_UINT8_RELAXED(*opcode_ptr, INSTRUMENTED_INSTRUCTION); |
825 | 0 | } |
826 | | |
827 | | static void |
828 | | remove_tools(PyCodeObject * code, int offset, int event, int tools) |
829 | 0 | { |
830 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
831 | 0 | assert(event != PY_MONITORING_EVENT_LINE); |
832 | 0 | assert(event != PY_MONITORING_EVENT_INSTRUCTION); |
833 | 0 | assert(PY_MONITORING_IS_INSTRUMENTED_EVENT(event)); |
834 | 0 | assert(opcode_has_event(_Py_GetBaseCodeUnit(code, offset).op.code)); |
835 | 0 | _PyCoMonitoringData *monitoring = code->_co_monitoring; |
836 | 0 | assert(monitoring); |
837 | 0 | bool should_de_instrument; |
838 | 0 | if (monitoring->tools) { |
839 | 0 | monitoring->tools[offset] &= ~tools; |
840 | 0 | should_de_instrument = (monitoring->tools[offset] == 0); |
841 | 0 | } |
842 | 0 | else { |
843 | | /* Single tool */ |
844 | 0 | uint8_t single_tool = monitoring->active_monitors.tools[event]; |
845 | 0 | assert(_Py_popcount32(single_tool) <= 1); |
846 | 0 | should_de_instrument = ((single_tool & tools) == single_tool); |
847 | 0 | } |
848 | 0 | if (should_de_instrument) { |
849 | 0 | MODIFY_BYTECODE(code, de_instrument, monitoring, offset, event); |
850 | 0 | } |
851 | 0 | } |
852 | | |
853 | | #ifndef NDEBUG |
854 | | static bool |
855 | | tools_is_subset_for_event(PyCodeObject * code, int event, int tools) |
856 | | { |
857 | | int global_tools = _PyInterpreterState_GET()->monitors.tools[event]; |
858 | | int local_tools = code->_co_monitoring->local_monitors.tools[event]; |
859 | | return tools == ((global_tools | local_tools) & tools); |
860 | | } |
861 | | #endif |
862 | | |
863 | | static void |
864 | | remove_line_tools(PyCodeObject * code, int offset, int tools) |
865 | 0 | { |
866 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
867 | |
|
868 | 0 | _PyCoMonitoringData *monitoring = code->_co_monitoring; |
869 | 0 | assert(monitoring); |
870 | 0 | bool should_de_instrument; |
871 | 0 | if (monitoring->line_tools) |
872 | 0 | { |
873 | 0 | uint8_t *toolsptr = &monitoring->line_tools[offset]; |
874 | 0 | *toolsptr &= ~tools; |
875 | 0 | should_de_instrument = (*toolsptr == 0); |
876 | 0 | } |
877 | 0 | else { |
878 | | /* Single tool */ |
879 | 0 | uint8_t single_tool = monitoring->active_monitors.tools[PY_MONITORING_EVENT_LINE]; |
880 | 0 | assert(_Py_popcount32(single_tool) <= 1); |
881 | 0 | should_de_instrument = ((single_tool & tools) == single_tool); |
882 | 0 | } |
883 | 0 | if (should_de_instrument) { |
884 | 0 | MODIFY_BYTECODE(code, de_instrument_line, monitoring, offset); |
885 | 0 | } |
886 | 0 | } |
887 | | |
888 | | static void |
889 | | add_tools(PyCodeObject * code, int offset, int event, int tools) |
890 | 0 | { |
891 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
892 | 0 | assert(event != PY_MONITORING_EVENT_LINE); |
893 | 0 | assert(event != PY_MONITORING_EVENT_INSTRUCTION); |
894 | 0 | assert(PY_MONITORING_IS_INSTRUMENTED_EVENT(event)); |
895 | 0 | assert(code->_co_monitoring); |
896 | 0 | if (code->_co_monitoring && |
897 | 0 | code->_co_monitoring->tools |
898 | 0 | ) { |
899 | 0 | code->_co_monitoring->tools[offset] |= tools; |
900 | 0 | } |
901 | 0 | else { |
902 | | /* Single tool */ |
903 | 0 | assert(_Py_popcount32(tools) == 1); |
904 | 0 | assert(tools_is_subset_for_event(code, event, tools)); |
905 | 0 | } |
906 | 0 | MODIFY_BYTECODE(code, instrument, code->_co_monitoring, offset); |
907 | 0 | } |
908 | | |
909 | | static void |
910 | | add_line_tools(PyCodeObject * code, int offset, int tools) |
911 | 0 | { |
912 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
913 | |
|
914 | 0 | assert(tools_is_subset_for_event(code, PY_MONITORING_EVENT_LINE, tools)); |
915 | 0 | assert(code->_co_monitoring); |
916 | 0 | if (code->_co_monitoring->line_tools) { |
917 | 0 | code->_co_monitoring->line_tools[offset] |= tools; |
918 | 0 | } |
919 | 0 | else { |
920 | | /* Single tool */ |
921 | 0 | assert(_Py_popcount32(tools) == 1); |
922 | 0 | } |
923 | 0 | MODIFY_BYTECODE(code, instrument_line, code->_co_monitoring, offset); |
924 | 0 | } |
925 | | |
926 | | |
927 | | static void |
928 | | add_per_instruction_tools(PyCodeObject * code, int offset, int tools) |
929 | 0 | { |
930 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
931 | |
|
932 | 0 | assert(tools_is_subset_for_event(code, PY_MONITORING_EVENT_INSTRUCTION, tools)); |
933 | 0 | assert(code->_co_monitoring); |
934 | 0 | if (code->_co_monitoring->per_instruction_tools) { |
935 | 0 | code->_co_monitoring->per_instruction_tools[offset] |= tools; |
936 | 0 | } |
937 | 0 | else { |
938 | | /* Single tool */ |
939 | 0 | assert(_Py_popcount32(tools) == 1); |
940 | 0 | } |
941 | 0 | MODIFY_BYTECODE(code, instrument_per_instruction, code->_co_monitoring, offset); |
942 | 0 | } |
943 | | |
944 | | |
945 | | static void |
946 | | remove_per_instruction_tools(PyCodeObject * code, int offset, int tools) |
947 | 0 | { |
948 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
949 | |
|
950 | 0 | _PyCoMonitoringData *monitoring = code->_co_monitoring; |
951 | 0 | assert(code->_co_monitoring); |
952 | 0 | bool should_de_instrument; |
953 | 0 | if (code->_co_monitoring->per_instruction_tools) { |
954 | 0 | uint8_t *toolsptr = &code->_co_monitoring->per_instruction_tools[offset]; |
955 | 0 | *toolsptr &= ~tools; |
956 | 0 | should_de_instrument = (*toolsptr == 0); |
957 | 0 | } |
958 | 0 | else { |
959 | | /* Single tool */ |
960 | 0 | uint8_t single_tool = code->_co_monitoring->active_monitors.tools[PY_MONITORING_EVENT_INSTRUCTION]; |
961 | 0 | assert(_Py_popcount32(single_tool) <= 1); |
962 | 0 | should_de_instrument = ((single_tool & tools) == single_tool); |
963 | 0 | } |
964 | 0 | if (should_de_instrument) { |
965 | 0 | MODIFY_BYTECODE(code, de_instrument_per_instruction, monitoring, offset); |
966 | 0 | } |
967 | 0 | } |
968 | | |
969 | | |
970 | | /* Return 1 if DISABLE returned, -1 if error, 0 otherwise */ |
971 | | static int |
972 | | call_one_instrument( |
973 | | PyInterpreterState *interp, PyThreadState *tstate, PyObject **args, |
974 | | size_t nargsf, int8_t tool, int event) |
975 | 0 | { |
976 | 0 | assert(0 <= tool && tool < 8); |
977 | 0 | assert(tstate->tracing == 0); |
978 | 0 | PyObject *instrument = interp->monitoring_callables[tool][event]; |
979 | 0 | if (instrument == NULL) { |
980 | 0 | return 0; |
981 | 0 | } |
982 | 0 | int old_what = tstate->what_event; |
983 | 0 | tstate->what_event = event; |
984 | 0 | tstate->tracing++; |
985 | 0 | PyObject *res = _PyObject_VectorcallTstate(tstate, instrument, args, nargsf, NULL); |
986 | 0 | tstate->tracing--; |
987 | 0 | tstate->what_event = old_what; |
988 | 0 | if (res == NULL) { |
989 | 0 | return -1; |
990 | 0 | } |
991 | 0 | Py_DECREF(res); |
992 | 0 | return (res == &_PyInstrumentation_DISABLE); |
993 | 0 | } |
994 | | |
995 | | static const int8_t MOST_SIGNIFICANT_BITS[16] = { |
996 | | -1, 0, 1, 1, |
997 | | 2, 2, 2, 2, |
998 | | 3, 3, 3, 3, |
999 | | 3, 3, 3, 3, |
1000 | | }; |
1001 | | |
1002 | | /* We could use _Py_bit_length here, but that is designed for larger (32/64) |
1003 | | * bit ints, and can perform relatively poorly on platforms without the |
1004 | | * necessary intrinsics. */ |
1005 | 0 | static inline int most_significant_bit(uint8_t bits) { |
1006 | 0 | assert(bits != 0); |
1007 | 0 | if (bits > 15) { |
1008 | 0 | return MOST_SIGNIFICANT_BITS[bits>>4]+4; |
1009 | 0 | } |
1010 | 0 | return MOST_SIGNIFICANT_BITS[bits]; |
1011 | 0 | } |
1012 | | |
1013 | | static uint32_t |
1014 | | global_version(PyInterpreterState *interp) |
1015 | 2.92k | { |
1016 | 2.92k | uint32_t version = (uint32_t)_Py_atomic_load_uintptr_relaxed( |
1017 | 2.92k | &interp->ceval.instrumentation_version); |
1018 | | #ifdef Py_DEBUG |
1019 | | PyThreadState *tstate = _PyThreadState_GET(); |
1020 | | uint32_t thread_version = |
1021 | | (uint32_t)(_Py_atomic_load_uintptr_relaxed(&tstate->eval_breaker) & |
1022 | | ~_PY_EVAL_EVENTS_MASK); |
1023 | | assert(thread_version == version); |
1024 | | #endif |
1025 | 2.92k | return version; |
1026 | 2.92k | } |
1027 | | |
1028 | | /* Atomically set the given version in the given location, without touching |
1029 | | anything in _PY_EVAL_EVENTS_MASK. */ |
1030 | | static void |
1031 | | set_version_raw(uintptr_t *ptr, uint32_t version) |
1032 | 0 | { |
1033 | 0 | uintptr_t old = _Py_atomic_load_uintptr_relaxed(ptr); |
1034 | 0 | uintptr_t new; |
1035 | 0 | do { |
1036 | 0 | new = (old & _PY_EVAL_EVENTS_MASK) | version; |
1037 | 0 | } while (!_Py_atomic_compare_exchange_uintptr(ptr, &old, new)); |
1038 | 0 | } |
1039 | | |
1040 | | static void |
1041 | | set_global_version(PyThreadState *tstate, uint32_t version) |
1042 | 0 | { |
1043 | 0 | assert((version & _PY_EVAL_EVENTS_MASK) == 0); |
1044 | 0 | PyInterpreterState *interp = tstate->interp; |
1045 | 0 | set_version_raw(&interp->ceval.instrumentation_version, version); |
1046 | |
|
1047 | | #ifdef Py_GIL_DISABLED |
1048 | | // Set the version on all threads in free-threaded builds. |
1049 | | _Py_FOR_EACH_TSTATE_BEGIN(interp, tstate) { |
1050 | | set_version_raw(&tstate->eval_breaker, version); |
1051 | | }; |
1052 | | _Py_FOR_EACH_TSTATE_END(interp); |
1053 | | #else |
1054 | | // Normal builds take the current version from instrumentation_version when |
1055 | | // attaching a thread, so we only have to set the current thread's version. |
1056 | 0 | set_version_raw(&tstate->eval_breaker, version); |
1057 | 0 | #endif |
1058 | 0 | } |
1059 | | |
1060 | | static bool |
1061 | | is_version_up_to_date(PyCodeObject *code, PyInterpreterState *interp) |
1062 | 2.92k | { |
1063 | 2.92k | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1064 | 2.92k | return global_version(interp) == code->_co_instrumentation_version; |
1065 | 2.92k | } |
1066 | | |
1067 | | #ifndef NDEBUG |
1068 | | static bool |
1069 | | instrumentation_cross_checks(PyInterpreterState *interp, PyCodeObject *code) |
1070 | | { |
1071 | | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1072 | | _Py_LocalMonitors expected = local_union( |
1073 | | interp->monitors, |
1074 | | code->_co_monitoring->local_monitors); |
1075 | | return monitors_equals(code->_co_monitoring->active_monitors, expected); |
1076 | | } |
1077 | | |
1078 | | static int |
1079 | | debug_check_sanity(PyInterpreterState *interp, PyCodeObject *code) |
1080 | | { |
1081 | | int res; |
1082 | | LOCK_CODE(code); |
1083 | | res = is_version_up_to_date(code, interp) && |
1084 | | instrumentation_cross_checks(interp, code); |
1085 | | UNLOCK_CODE(); |
1086 | | return res; |
1087 | | } |
1088 | | |
1089 | | #endif |
1090 | | |
1091 | | static inline uint8_t |
1092 | | get_tools_for_instruction(PyCodeObject *code, PyInterpreterState *interp, int i, int event) |
1093 | 0 | { |
1094 | 0 | uint8_t tools; |
1095 | 0 | assert(event != PY_MONITORING_EVENT_LINE); |
1096 | 0 | assert(event != PY_MONITORING_EVENT_INSTRUCTION); |
1097 | 0 | if (event >= _PY_MONITORING_UNGROUPED_EVENTS) { |
1098 | 0 | assert(event == PY_MONITORING_EVENT_C_RAISE || |
1099 | 0 | event == PY_MONITORING_EVENT_C_RETURN); |
1100 | 0 | event = PY_MONITORING_EVENT_CALL; |
1101 | 0 | } |
1102 | 0 | if (PY_MONITORING_IS_INSTRUMENTED_EVENT(event)) { |
1103 | 0 | CHECK(debug_check_sanity(interp, code)); |
1104 | 0 | if (code->_co_monitoring->tools) { |
1105 | 0 | tools = code->_co_monitoring->tools[i]; |
1106 | 0 | } |
1107 | 0 | else { |
1108 | 0 | tools = code->_co_monitoring->active_monitors.tools[event]; |
1109 | 0 | } |
1110 | 0 | } |
1111 | 0 | else { |
1112 | 0 | tools = interp->monitors.tools[event]; |
1113 | 0 | } |
1114 | 0 | return tools; |
1115 | 0 | } |
1116 | | |
1117 | | static const char *const event_names [] = { |
1118 | | [PY_MONITORING_EVENT_PY_START] = "PY_START", |
1119 | | [PY_MONITORING_EVENT_PY_RESUME] = "PY_RESUME", |
1120 | | [PY_MONITORING_EVENT_PY_RETURN] = "PY_RETURN", |
1121 | | [PY_MONITORING_EVENT_PY_YIELD] = "PY_YIELD", |
1122 | | [PY_MONITORING_EVENT_CALL] = "CALL", |
1123 | | [PY_MONITORING_EVENT_LINE] = "LINE", |
1124 | | [PY_MONITORING_EVENT_INSTRUCTION] = "INSTRUCTION", |
1125 | | [PY_MONITORING_EVENT_JUMP] = "JUMP", |
1126 | | [PY_MONITORING_EVENT_BRANCH] = "BRANCH", |
1127 | | [PY_MONITORING_EVENT_BRANCH_LEFT] = "BRANCH_LEFT", |
1128 | | [PY_MONITORING_EVENT_BRANCH_RIGHT] = "BRANCH_RIGHT", |
1129 | | [PY_MONITORING_EVENT_C_RETURN] = "C_RETURN", |
1130 | | [PY_MONITORING_EVENT_PY_THROW] = "PY_THROW", |
1131 | | [PY_MONITORING_EVENT_RAISE] = "RAISE", |
1132 | | [PY_MONITORING_EVENT_RERAISE] = "RERAISE", |
1133 | | [PY_MONITORING_EVENT_EXCEPTION_HANDLED] = "EXCEPTION_HANDLED", |
1134 | | [PY_MONITORING_EVENT_C_RAISE] = "C_RAISE", |
1135 | | [PY_MONITORING_EVENT_PY_UNWIND] = "PY_UNWIND", |
1136 | | [PY_MONITORING_EVENT_STOP_ITERATION] = "STOP_ITERATION", |
1137 | | }; |
1138 | | |
1139 | | static int |
1140 | | call_instrumentation_vector( |
1141 | | _Py_CODEUNIT *instr, PyThreadState *tstate, int event, |
1142 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *arg2, Py_ssize_t nargs, PyObject *args[]) |
1143 | 0 | { |
1144 | 0 | if (tstate->tracing) { |
1145 | 0 | return 0; |
1146 | 0 | } |
1147 | 0 | assert(!_PyErr_Occurred(tstate)); |
1148 | 0 | assert(args[0] == NULL); |
1149 | 0 | PyCodeObject *code = _PyFrame_GetCode(frame); |
1150 | 0 | assert(args[1] == NULL); |
1151 | 0 | args[1] = (PyObject *)code; |
1152 | 0 | int offset = (int)(instr - _PyFrame_GetBytecode(frame)); |
1153 | | /* Offset visible to user should be the offset in bytes, as that is the |
1154 | | * convention for APIs involving code offsets. */ |
1155 | 0 | int bytes_arg2 = (int)(arg2 - _PyFrame_GetBytecode(frame)) * (int)sizeof(_Py_CODEUNIT); |
1156 | 0 | PyObject *arg2_obj = PyLong_FromLong(bytes_arg2); |
1157 | 0 | if (arg2_obj == NULL) { |
1158 | 0 | return -1; |
1159 | 0 | } |
1160 | 0 | assert(args[2] == NULL); |
1161 | 0 | args[2] = arg2_obj; |
1162 | 0 | PyInterpreterState *interp = tstate->interp; |
1163 | 0 | uint8_t tools = get_tools_for_instruction(code, interp, offset, event); |
1164 | 0 | size_t nargsf = (size_t) nargs | PY_VECTORCALL_ARGUMENTS_OFFSET; |
1165 | 0 | PyObject **callargs = &args[1]; |
1166 | 0 | int err = 0; |
1167 | 0 | while (tools) { |
1168 | 0 | int tool = most_significant_bit(tools); |
1169 | 0 | assert(tool >= 0 && tool < 8); |
1170 | 0 | assert(tools & (1 << tool)); |
1171 | 0 | tools ^= (1 << tool); |
1172 | 0 | int res = call_one_instrument(interp, tstate, callargs, nargsf, tool, event); |
1173 | 0 | if (res == 0) { |
1174 | | /* Nothing to do */ |
1175 | 0 | } |
1176 | 0 | else if (res < 0) { |
1177 | | /* error */ |
1178 | 0 | err = -1; |
1179 | 0 | break; |
1180 | 0 | } |
1181 | 0 | else { |
1182 | | /* DISABLE */ |
1183 | 0 | if (!PY_MONITORING_IS_INSTRUMENTED_EVENT(event)) { |
1184 | 0 | PyErr_Format(PyExc_ValueError, |
1185 | 0 | "Cannot disable %s events. Callback removed.", |
1186 | 0 | event_names[event]); |
1187 | | /* Clear tool to prevent infinite loop */ |
1188 | 0 | Py_CLEAR(interp->monitoring_callables[tool][event]); |
1189 | 0 | err = -1; |
1190 | 0 | break; |
1191 | 0 | } |
1192 | 0 | else { |
1193 | 0 | LOCK_CODE(code); |
1194 | 0 | remove_tools(code, offset, event, 1 << tool); |
1195 | 0 | UNLOCK_CODE(); |
1196 | 0 | } |
1197 | 0 | } |
1198 | 0 | } |
1199 | 0 | Py_DECREF(arg2_obj); |
1200 | 0 | return err; |
1201 | 0 | } |
1202 | | |
1203 | | Py_NO_INLINE int |
1204 | | _Py_call_instrumentation( |
1205 | | PyThreadState *tstate, int event, |
1206 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *instr) |
1207 | 0 | { |
1208 | 0 | PyObject *args[3] = { NULL, NULL, NULL }; |
1209 | 0 | return call_instrumentation_vector(instr, tstate, event, frame, instr, 2, args); |
1210 | 0 | } |
1211 | | |
1212 | | Py_NO_INLINE int |
1213 | | _Py_call_instrumentation_arg( |
1214 | | PyThreadState *tstate, int event, |
1215 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg) |
1216 | 0 | { |
1217 | 0 | PyObject *args[4] = { NULL, NULL, NULL, arg }; |
1218 | 0 | return call_instrumentation_vector(instr, tstate, event, frame, instr, 3, args); |
1219 | 0 | } |
1220 | | |
1221 | | Py_NO_INLINE int |
1222 | | _Py_call_instrumentation_2args( |
1223 | | PyThreadState *tstate, int event, |
1224 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg0, PyObject *arg1) |
1225 | 0 | { |
1226 | 0 | PyObject *args[5] = { NULL, NULL, NULL, arg0, arg1 }; |
1227 | 0 | return call_instrumentation_vector(instr, tstate, event, frame, instr, 4, args); |
1228 | 0 | } |
1229 | | |
1230 | | Py_NO_INLINE _Py_CODEUNIT * |
1231 | | _Py_call_instrumentation_jump( |
1232 | | _Py_CODEUNIT *instr, PyThreadState *tstate, int event, |
1233 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *src, _Py_CODEUNIT *dest) |
1234 | 0 | { |
1235 | 0 | assert(event == PY_MONITORING_EVENT_JUMP || |
1236 | 0 | event == PY_MONITORING_EVENT_BRANCH_RIGHT || |
1237 | 0 | event == PY_MONITORING_EVENT_BRANCH_LEFT); |
1238 | 0 | int to = (int)(dest - _PyFrame_GetBytecode(frame)); |
1239 | 0 | PyObject *to_obj = PyLong_FromLong(to * (int)sizeof(_Py_CODEUNIT)); |
1240 | 0 | if (to_obj == NULL) { |
1241 | 0 | return NULL; |
1242 | 0 | } |
1243 | 0 | PyObject *args[4] = { NULL, NULL, NULL, to_obj }; |
1244 | 0 | _Py_CODEUNIT *instr_ptr = frame->instr_ptr; |
1245 | 0 | int err = call_instrumentation_vector(instr, tstate, event, frame, src, 3, args); |
1246 | 0 | Py_DECREF(to_obj); |
1247 | 0 | if (err) { |
1248 | 0 | return NULL; |
1249 | 0 | } |
1250 | 0 | if (frame->instr_ptr != instr_ptr) { |
1251 | | /* The callback has caused a jump (by setting the line number) */ |
1252 | 0 | return frame->instr_ptr; |
1253 | 0 | } |
1254 | 0 | return dest; |
1255 | 0 | } |
1256 | | |
1257 | | static void |
1258 | | call_instrumentation_vector_protected( |
1259 | | PyThreadState *tstate, int event, |
1260 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, Py_ssize_t nargs, PyObject *args[]) |
1261 | 0 | { |
1262 | 0 | assert(_PyErr_Occurred(tstate)); |
1263 | 0 | PyObject *exc = _PyErr_GetRaisedException(tstate); |
1264 | 0 | int err = call_instrumentation_vector(instr, tstate, event, frame, instr, nargs, args); |
1265 | 0 | if (err) { |
1266 | 0 | Py_XDECREF(exc); |
1267 | 0 | } |
1268 | 0 | else { |
1269 | 0 | _PyErr_SetRaisedException(tstate, exc); |
1270 | 0 | } |
1271 | 0 | assert(_PyErr_Occurred(tstate)); |
1272 | 0 | } |
1273 | | |
1274 | | Py_NO_INLINE void |
1275 | | _Py_call_instrumentation_exc2( |
1276 | | PyThreadState *tstate, int event, |
1277 | | _PyInterpreterFrame *frame, _Py_CODEUNIT *instr, PyObject *arg0, PyObject *arg1) |
1278 | 0 | { |
1279 | 0 | assert(_PyErr_Occurred(tstate)); |
1280 | 0 | PyObject *args[5] = { NULL, NULL, NULL, arg0, arg1 }; |
1281 | 0 | call_instrumentation_vector_protected(tstate, event, frame, instr, 4, args); |
1282 | 0 | } |
1283 | | |
1284 | | int |
1285 | | _Py_Instrumentation_GetLine(PyCodeObject *code, int index) |
1286 | 0 | { |
1287 | 0 | _PyCoMonitoringData *monitoring = code->_co_monitoring; |
1288 | 0 | assert(monitoring != NULL); |
1289 | 0 | assert(monitoring->lines != NULL); |
1290 | 0 | assert(index < Py_SIZE(code)); |
1291 | 0 | _PyCoLineInstrumentationData *line_data = monitoring->lines; |
1292 | 0 | int line_delta = get_line_delta(line_data, index); |
1293 | 0 | int line = compute_line(code, line_delta); |
1294 | 0 | return line; |
1295 | 0 | } |
1296 | | |
1297 | | Py_NO_INLINE int |
1298 | | _Py_call_instrumentation_line(PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr, _Py_CODEUNIT *prev) |
1299 | 0 | { |
1300 | 0 | PyCodeObject *code = _PyFrame_GetCode(frame); |
1301 | 0 | assert(tstate->tracing == 0); |
1302 | 0 | assert(debug_check_sanity(tstate->interp, code)); |
1303 | 0 | _Py_CODEUNIT *bytecode = _PyFrame_GetBytecode(frame); |
1304 | 0 | int i = (int)(instr - bytecode); |
1305 | |
|
1306 | 0 | _PyCoMonitoringData *monitoring = code->_co_monitoring; |
1307 | 0 | _PyCoLineInstrumentationData *line_data = monitoring->lines; |
1308 | 0 | PyInterpreterState *interp = tstate->interp; |
1309 | 0 | int line = _Py_Instrumentation_GetLine(code, i); |
1310 | 0 | assert(line >= 0); |
1311 | 0 | assert(prev != NULL); |
1312 | 0 | int prev_index = (int)(prev - bytecode); |
1313 | 0 | int prev_line = _Py_Instrumentation_GetLine(code, prev_index); |
1314 | 0 | if (prev_line == line) { |
1315 | 0 | int prev_opcode = bytecode[prev_index].op.code; |
1316 | | /* RESUME and INSTRUMENTED_RESUME are needed for the operation of |
1317 | | * instrumentation, so must never be hidden by an INSTRUMENTED_LINE. |
1318 | | */ |
1319 | 0 | if (prev_opcode != RESUME && prev_opcode != INSTRUMENTED_RESUME) { |
1320 | 0 | goto done; |
1321 | 0 | } |
1322 | 0 | } |
1323 | | |
1324 | 0 | uint8_t tools = code->_co_monitoring->line_tools != NULL ? |
1325 | 0 | code->_co_monitoring->line_tools[i] : |
1326 | 0 | (interp->monitors.tools[PY_MONITORING_EVENT_LINE] | |
1327 | 0 | code->_co_monitoring->local_monitors.tools[PY_MONITORING_EVENT_LINE] |
1328 | 0 | ); |
1329 | | /* Special case sys.settrace to avoid boxing the line number, |
1330 | | * only to immediately unbox it. */ |
1331 | 0 | if (tools & (1 << PY_MONITORING_SYS_TRACE_ID)) { |
1332 | 0 | if (tstate->c_tracefunc != NULL) { |
1333 | 0 | PyFrameObject *frame_obj = _PyFrame_GetFrameObject(frame); |
1334 | 0 | if (frame_obj == NULL) { |
1335 | 0 | return -1; |
1336 | 0 | } |
1337 | 0 | if (frame_obj->f_trace_lines) { |
1338 | | /* Need to set tracing and what_event as if using |
1339 | | * the instrumentation call. */ |
1340 | 0 | int old_what = tstate->what_event; |
1341 | 0 | tstate->what_event = PY_MONITORING_EVENT_LINE; |
1342 | 0 | tstate->tracing++; |
1343 | | /* Call c_tracefunc directly, having set the line number. */ |
1344 | 0 | Py_INCREF(frame_obj); |
1345 | 0 | frame_obj->f_lineno = line; |
1346 | 0 | int err = tstate->c_tracefunc(tstate->c_traceobj, frame_obj, PyTrace_LINE, Py_None); |
1347 | 0 | frame_obj->f_lineno = 0; |
1348 | 0 | tstate->tracing--; |
1349 | 0 | tstate->what_event = old_what; |
1350 | 0 | Py_DECREF(frame_obj); |
1351 | 0 | if (err) { |
1352 | 0 | return -1; |
1353 | 0 | } |
1354 | 0 | } |
1355 | 0 | } |
1356 | 0 | tools &= (255 - (1 << PY_MONITORING_SYS_TRACE_ID)); |
1357 | 0 | } |
1358 | 0 | if (tools == 0) { |
1359 | 0 | goto done; |
1360 | 0 | } |
1361 | 0 | PyObject *line_obj = PyLong_FromLong(line); |
1362 | 0 | if (line_obj == NULL) { |
1363 | 0 | return -1; |
1364 | 0 | } |
1365 | 0 | PyObject *args[3] = { NULL, (PyObject *)code, line_obj }; |
1366 | 0 | do { |
1367 | 0 | int tool = most_significant_bit(tools); |
1368 | 0 | assert(tool >= 0 && tool < PY_MONITORING_SYS_PROFILE_ID); |
1369 | 0 | assert(tools & (1 << tool)); |
1370 | 0 | tools &= ~(1 << tool); |
1371 | 0 | int res = call_one_instrument(interp, tstate, &args[1], |
1372 | 0 | 2 | PY_VECTORCALL_ARGUMENTS_OFFSET, |
1373 | 0 | tool, PY_MONITORING_EVENT_LINE); |
1374 | 0 | if (res == 0) { |
1375 | | /* Nothing to do */ |
1376 | 0 | } |
1377 | 0 | else if (res < 0) { |
1378 | | /* error */ |
1379 | 0 | Py_DECREF(line_obj); |
1380 | 0 | return -1; |
1381 | 0 | } |
1382 | 0 | else { |
1383 | | /* DISABLE */ |
1384 | 0 | LOCK_CODE(code); |
1385 | 0 | remove_line_tools(code, i, 1 << tool); |
1386 | 0 | UNLOCK_CODE(); |
1387 | 0 | } |
1388 | 0 | } while (tools); |
1389 | 0 | Py_DECREF(line_obj); |
1390 | 0 | uint8_t original_opcode; |
1391 | 0 | done: |
1392 | 0 | original_opcode = get_original_opcode(line_data, i); |
1393 | 0 | assert(original_opcode != 0); |
1394 | 0 | assert(original_opcode != INSTRUMENTED_LINE); |
1395 | 0 | assert(_PyOpcode_Deopt[original_opcode] == original_opcode); |
1396 | 0 | return original_opcode; |
1397 | 0 | } |
1398 | | |
1399 | | Py_NO_INLINE int |
1400 | | _Py_call_instrumentation_instruction(PyThreadState *tstate, _PyInterpreterFrame* frame, _Py_CODEUNIT *instr) |
1401 | 0 | { |
1402 | 0 | PyCodeObject *code = _PyFrame_GetCode(frame); |
1403 | 0 | int offset = (int)(instr - _PyFrame_GetBytecode(frame)); |
1404 | 0 | _PyCoMonitoringData *instrumentation_data = code->_co_monitoring; |
1405 | 0 | assert(instrumentation_data->per_instruction_opcodes); |
1406 | 0 | int next_opcode = instrumentation_data->per_instruction_opcodes[offset]; |
1407 | 0 | if (tstate->tracing) { |
1408 | 0 | return next_opcode; |
1409 | 0 | } |
1410 | 0 | assert(debug_check_sanity(tstate->interp, code)); |
1411 | 0 | PyInterpreterState *interp = tstate->interp; |
1412 | 0 | uint8_t tools = instrumentation_data->per_instruction_tools != NULL ? |
1413 | 0 | instrumentation_data->per_instruction_tools[offset] : |
1414 | 0 | (interp->monitors.tools[PY_MONITORING_EVENT_INSTRUCTION] | |
1415 | 0 | code->_co_monitoring->local_monitors.tools[PY_MONITORING_EVENT_INSTRUCTION] |
1416 | 0 | ); |
1417 | 0 | int bytes_offset = offset * (int)sizeof(_Py_CODEUNIT); |
1418 | 0 | PyObject *offset_obj = PyLong_FromLong(bytes_offset); |
1419 | 0 | if (offset_obj == NULL) { |
1420 | 0 | return -1; |
1421 | 0 | } |
1422 | 0 | PyObject *args[3] = { NULL, (PyObject *)code, offset_obj }; |
1423 | 0 | while (tools) { |
1424 | 0 | int tool = most_significant_bit(tools); |
1425 | 0 | assert(tool >= 0 && tool < 8); |
1426 | 0 | assert(tools & (1 << tool)); |
1427 | 0 | tools &= ~(1 << tool); |
1428 | 0 | int res = call_one_instrument(interp, tstate, &args[1], |
1429 | 0 | 2 | PY_VECTORCALL_ARGUMENTS_OFFSET, |
1430 | 0 | tool, PY_MONITORING_EVENT_INSTRUCTION); |
1431 | 0 | if (res == 0) { |
1432 | | /* Nothing to do */ |
1433 | 0 | } |
1434 | 0 | else if (res < 0) { |
1435 | | /* error */ |
1436 | 0 | Py_DECREF(offset_obj); |
1437 | 0 | return -1; |
1438 | 0 | } |
1439 | 0 | else { |
1440 | | /* DISABLE */ |
1441 | 0 | LOCK_CODE(code); |
1442 | 0 | remove_per_instruction_tools(code, offset, 1 << tool); |
1443 | 0 | UNLOCK_CODE(); |
1444 | 0 | } |
1445 | 0 | } |
1446 | 0 | Py_DECREF(offset_obj); |
1447 | 0 | assert(next_opcode != 0); |
1448 | 0 | return next_opcode; |
1449 | 0 | } |
1450 | | |
1451 | | static void |
1452 | | initialize_tools(PyCodeObject *code) |
1453 | 0 | { |
1454 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1455 | 0 | uint8_t* tools = code->_co_monitoring->tools; |
1456 | |
|
1457 | 0 | assert(tools != NULL); |
1458 | 0 | int code_len = (int)Py_SIZE(code); |
1459 | 0 | for (int i = 0; i < code_len; i++) { |
1460 | 0 | _Py_CODEUNIT *instr = &_PyCode_CODE(code)[i]; |
1461 | 0 | int opcode = instr->op.code; |
1462 | 0 | assert(opcode != ENTER_EXECUTOR); |
1463 | 0 | if (opcode == INSTRUMENTED_LINE) { |
1464 | 0 | opcode = get_original_opcode(code->_co_monitoring->lines, i); |
1465 | 0 | } |
1466 | 0 | if (opcode == INSTRUMENTED_INSTRUCTION) { |
1467 | 0 | opcode = code->_co_monitoring->per_instruction_opcodes[i]; |
1468 | 0 | } |
1469 | 0 | bool instrumented = is_instrumented(opcode); |
1470 | 0 | if (instrumented) { |
1471 | 0 | opcode = DE_INSTRUMENT[opcode]; |
1472 | 0 | assert(opcode != 0); |
1473 | 0 | } |
1474 | 0 | opcode = _PyOpcode_Deopt[opcode]; |
1475 | 0 | if (opcode_has_event(opcode)) { |
1476 | 0 | if (instrumented) { |
1477 | 0 | int8_t event; |
1478 | 0 | if (opcode == RESUME) { |
1479 | 0 | event = instr->op.arg != 0; |
1480 | 0 | } |
1481 | 0 | else { |
1482 | 0 | event = EVENT_FOR_OPCODE[opcode]; |
1483 | 0 | assert(event > 0); |
1484 | 0 | } |
1485 | 0 | assert(event >= 0); |
1486 | 0 | assert(PY_MONITORING_IS_INSTRUMENTED_EVENT(event)); |
1487 | 0 | tools[i] = code->_co_monitoring->active_monitors.tools[event]; |
1488 | 0 | CHECK(tools[i] != 0); |
1489 | 0 | } |
1490 | 0 | else { |
1491 | 0 | tools[i] = 0; |
1492 | 0 | } |
1493 | 0 | } |
1494 | | #ifdef Py_DEBUG |
1495 | | /* Initialize tools for invalid locations to all ones to try to catch errors */ |
1496 | | else { |
1497 | | tools[i] = 0xff; |
1498 | | } |
1499 | | for (int j = 1; j <= _PyOpcode_Caches[opcode]; j++) { |
1500 | | tools[i+j] = 0xff; |
1501 | | } |
1502 | | #endif |
1503 | 0 | i += _PyOpcode_Caches[opcode]; |
1504 | 0 | } |
1505 | 0 | } |
1506 | | |
1507 | | static void |
1508 | | initialize_lines(PyCodeObject *code, int bytes_per_entry) |
1509 | 0 | { |
1510 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1511 | 0 | _PyCoLineInstrumentationData *line_data = code->_co_monitoring->lines; |
1512 | |
|
1513 | 0 | assert(line_data != NULL); |
1514 | 0 | line_data->bytes_per_entry = bytes_per_entry; |
1515 | 0 | int code_len = (int)Py_SIZE(code); |
1516 | 0 | PyCodeAddressRange range; |
1517 | 0 | _PyCode_InitAddressRange(code, &range); |
1518 | 0 | int current_line = -1; |
1519 | 0 | for (int i = 0; i < code_len; ) { |
1520 | 0 | int opcode = _Py_GetBaseCodeUnit(code, i).op.code; |
1521 | 0 | int line = _PyCode_CheckLineNumber(i*(int)sizeof(_Py_CODEUNIT), &range); |
1522 | 0 | set_line_delta(line_data, i, compute_line_delta(code, line)); |
1523 | 0 | int length = _PyInstruction_GetLength(code, i); |
1524 | 0 | if (i < code->_co_firsttraceable) { |
1525 | 0 | set_original_opcode(line_data, i, 0); |
1526 | 0 | } |
1527 | 0 | else { |
1528 | 0 | switch (opcode) { |
1529 | 0 | case END_ASYNC_FOR: |
1530 | 0 | case END_FOR: |
1531 | 0 | case END_SEND: |
1532 | 0 | case RESUME: |
1533 | 0 | case POP_ITER: |
1534 | | /* END_FOR cannot start a line, as it is skipped by FOR_ITER |
1535 | | * END_SEND cannot start a line, as it is skipped by SEND |
1536 | | * RESUME and POP_ITER must not be instrumented with INSTRUMENTED_LINE */ |
1537 | 0 | set_original_opcode(line_data, i, 0); |
1538 | 0 | break; |
1539 | 0 | default: |
1540 | | /* Set original_opcode to the opcode iff the instruction |
1541 | | * starts a line, and thus should be instrumented. |
1542 | | * This saves having to perform this check every time the |
1543 | | * we turn instrumentation on or off, and serves as a sanity |
1544 | | * check when debugging. |
1545 | | */ |
1546 | 0 | if (line != current_line && line >= 0) { |
1547 | 0 | set_original_opcode(line_data, i, opcode); |
1548 | 0 | CHECK(get_line_delta(line_data, i) != NO_LINE); |
1549 | 0 | } |
1550 | 0 | else { |
1551 | 0 | set_original_opcode(line_data, i, 0); |
1552 | 0 | } |
1553 | 0 | current_line = line; |
1554 | 0 | } |
1555 | 0 | } |
1556 | 0 | for (int j = 1; j < length; j++) { |
1557 | 0 | set_original_opcode(line_data, i+j, 0); |
1558 | 0 | set_line_delta(line_data, i+j, NO_LINE); |
1559 | 0 | } |
1560 | 0 | i += length; |
1561 | 0 | } |
1562 | 0 | for (int i = code->_co_firsttraceable; i < code_len; ) { |
1563 | 0 | _Py_CODEUNIT inst =_Py_GetBaseCodeUnit(code, i); |
1564 | 0 | int opcode = inst.op.code; |
1565 | 0 | int oparg = 0; |
1566 | 0 | while (opcode == EXTENDED_ARG) { |
1567 | 0 | oparg = (oparg << 8) | inst.op.arg; |
1568 | 0 | i++; |
1569 | 0 | inst =_Py_GetBaseCodeUnit(code, i); |
1570 | 0 | opcode = inst.op.code; |
1571 | 0 | } |
1572 | 0 | oparg = (oparg << 8) | inst.op.arg; |
1573 | 0 | i += _PyInstruction_GetLength(code, i); |
1574 | 0 | int target = -1; |
1575 | 0 | switch (opcode) { |
1576 | 0 | case POP_JUMP_IF_FALSE: |
1577 | 0 | case POP_JUMP_IF_TRUE: |
1578 | 0 | case POP_JUMP_IF_NONE: |
1579 | 0 | case POP_JUMP_IF_NOT_NONE: |
1580 | 0 | case JUMP_FORWARD: |
1581 | 0 | { |
1582 | 0 | target = i + oparg; |
1583 | 0 | break; |
1584 | 0 | } |
1585 | 0 | case FOR_ITER: |
1586 | 0 | case SEND: |
1587 | 0 | { |
1588 | | /* Skip over END_FOR/END_SEND */ |
1589 | 0 | target = i + oparg + 1; |
1590 | 0 | break; |
1591 | 0 | } |
1592 | 0 | case JUMP_BACKWARD: |
1593 | 0 | case JUMP_BACKWARD_NO_INTERRUPT: |
1594 | 0 | { |
1595 | 0 | target = i - oparg; |
1596 | 0 | break; |
1597 | 0 | } |
1598 | 0 | default: |
1599 | 0 | continue; |
1600 | 0 | } |
1601 | 0 | assert(target >= 0); |
1602 | 0 | if (get_line_delta(line_data, target) != NO_LINE) { |
1603 | 0 | int opcode = _Py_GetBaseCodeUnit(code, target).op.code; |
1604 | 0 | if (opcode != POP_ITER) { |
1605 | 0 | set_original_opcode(line_data, target, opcode); |
1606 | 0 | } |
1607 | 0 | } |
1608 | 0 | } |
1609 | | /* Scan exception table */ |
1610 | 0 | unsigned char *start = (unsigned char *)PyBytes_AS_STRING(code->co_exceptiontable); |
1611 | 0 | unsigned char *end = start + PyBytes_GET_SIZE(code->co_exceptiontable); |
1612 | 0 | unsigned char *scan = start; |
1613 | 0 | while (scan < end) { |
1614 | 0 | int start_offset, size, handler; |
1615 | 0 | scan = parse_varint(scan, &start_offset); |
1616 | 0 | assert(start_offset >= 0 && start_offset < code_len); |
1617 | 0 | scan = parse_varint(scan, &size); |
1618 | 0 | assert(size >= 0 && start_offset+size <= code_len); |
1619 | 0 | scan = parse_varint(scan, &handler); |
1620 | 0 | assert(handler >= 0 && handler < code_len); |
1621 | 0 | int depth_and_lasti; |
1622 | 0 | scan = parse_varint(scan, &depth_and_lasti); |
1623 | 0 | int original_opcode = _Py_GetBaseCodeUnit(code, handler).op.code; |
1624 | | /* Skip if not the start of a line. |
1625 | | * END_ASYNC_FOR is a bit special as it marks the end of |
1626 | | * an `async for` loop, which should not generate its own |
1627 | | * line event. */ |
1628 | 0 | if (get_line_delta(line_data, handler) != NO_LINE && original_opcode != END_ASYNC_FOR) { |
1629 | 0 | set_original_opcode(line_data, handler, original_opcode); |
1630 | 0 | } |
1631 | 0 | } |
1632 | 0 | } |
1633 | | |
1634 | | static void |
1635 | | initialize_line_tools(PyCodeObject *code, _Py_LocalMonitors *all_events) |
1636 | 0 | { |
1637 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1638 | 0 | uint8_t *line_tools = code->_co_monitoring->line_tools; |
1639 | |
|
1640 | 0 | assert(line_tools != NULL); |
1641 | 0 | int code_len = (int)Py_SIZE(code); |
1642 | 0 | for (int i = 0; i < code_len; i++) { |
1643 | 0 | line_tools[i] = all_events->tools[PY_MONITORING_EVENT_LINE]; |
1644 | 0 | } |
1645 | 0 | } |
1646 | | |
1647 | | static int |
1648 | | allocate_instrumentation_data(PyCodeObject *code) |
1649 | 0 | { |
1650 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1651 | |
|
1652 | 0 | if (code->_co_monitoring == NULL) { |
1653 | 0 | code->_co_monitoring = PyMem_Malloc(sizeof(_PyCoMonitoringData)); |
1654 | 0 | if (code->_co_monitoring == NULL) { |
1655 | 0 | PyErr_NoMemory(); |
1656 | 0 | return -1; |
1657 | 0 | } |
1658 | 0 | code->_co_monitoring->local_monitors = (_Py_LocalMonitors){ 0 }; |
1659 | 0 | code->_co_monitoring->active_monitors = (_Py_LocalMonitors){ 0 }; |
1660 | 0 | code->_co_monitoring->tools = NULL; |
1661 | 0 | code->_co_monitoring->lines = NULL; |
1662 | 0 | code->_co_monitoring->line_tools = NULL; |
1663 | 0 | code->_co_monitoring->per_instruction_opcodes = NULL; |
1664 | 0 | code->_co_monitoring->per_instruction_tools = NULL; |
1665 | 0 | } |
1666 | 0 | return 0; |
1667 | 0 | } |
1668 | | |
1669 | | static int |
1670 | | update_instrumentation_data(PyCodeObject *code, PyInterpreterState *interp) |
1671 | 0 | { |
1672 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1673 | |
|
1674 | 0 | int code_len = (int)Py_SIZE(code); |
1675 | 0 | if (allocate_instrumentation_data(code)) { |
1676 | 0 | return -1; |
1677 | 0 | } |
1678 | | // If the local monitors are out of date, clear them up |
1679 | 0 | _Py_LocalMonitors *local_monitors = &code->_co_monitoring->local_monitors; |
1680 | 0 | for (int i = 0; i < PY_MONITORING_TOOL_IDS; i++) { |
1681 | 0 | if (code->_co_monitoring->tool_versions[i] != interp->monitoring_tool_versions[i]) { |
1682 | 0 | for (int j = 0; j < _PY_MONITORING_LOCAL_EVENTS; j++) { |
1683 | 0 | local_monitors->tools[j] &= ~(1 << i); |
1684 | 0 | } |
1685 | 0 | } |
1686 | 0 | } |
1687 | |
|
1688 | 0 | _Py_LocalMonitors all_events = local_union( |
1689 | 0 | interp->monitors, |
1690 | 0 | code->_co_monitoring->local_monitors); |
1691 | 0 | bool multitools = multiple_tools(&all_events); |
1692 | 0 | if (code->_co_monitoring->tools == NULL && multitools) { |
1693 | 0 | code->_co_monitoring->tools = PyMem_Malloc(code_len); |
1694 | 0 | if (code->_co_monitoring->tools == NULL) { |
1695 | 0 | PyErr_NoMemory(); |
1696 | 0 | return -1; |
1697 | 0 | } |
1698 | 0 | initialize_tools(code); |
1699 | 0 | } |
1700 | 0 | if (all_events.tools[PY_MONITORING_EVENT_LINE]) { |
1701 | 0 | if (code->_co_monitoring->lines == NULL) { |
1702 | 0 | PyCodeAddressRange range; |
1703 | 0 | _PyCode_InitAddressRange(code, &range); |
1704 | 0 | int max_line = code->co_firstlineno + 1; |
1705 | 0 | _PyCode_InitAddressRange(code, &range); |
1706 | 0 | for (int i = code->_co_firsttraceable; i < code_len; ) { |
1707 | 0 | int line = _PyCode_CheckLineNumber(i*(int)sizeof(_Py_CODEUNIT), &range); |
1708 | 0 | if (line > max_line) { |
1709 | 0 | max_line = line; |
1710 | 0 | } |
1711 | 0 | int length = _PyInstruction_GetLength(code, i); |
1712 | 0 | i += length; |
1713 | 0 | } |
1714 | 0 | int bytes_per_entry; |
1715 | 0 | int max_delta = max_line - code->co_firstlineno; |
1716 | | /* We store delta+2 in the table, so 253 is max for one byte */ |
1717 | 0 | if (max_delta < 256+NO_LINE) { |
1718 | 0 | bytes_per_entry = 2; |
1719 | 0 | } |
1720 | 0 | else if (max_delta < (1 << 16)+NO_LINE) { |
1721 | 0 | bytes_per_entry = 3; |
1722 | 0 | } |
1723 | 0 | else if (max_delta < (1 << 24)+NO_LINE) { |
1724 | 0 | bytes_per_entry = 4; |
1725 | 0 | } |
1726 | 0 | else { |
1727 | 0 | bytes_per_entry = 5; |
1728 | 0 | } |
1729 | 0 | code->_co_monitoring->lines = PyMem_Malloc(1 + code_len * bytes_per_entry); |
1730 | 0 | if (code->_co_monitoring->lines == NULL) { |
1731 | 0 | PyErr_NoMemory(); |
1732 | 0 | return -1; |
1733 | 0 | } |
1734 | 0 | initialize_lines(code, bytes_per_entry); |
1735 | 0 | } |
1736 | 0 | if (multitools && code->_co_monitoring->line_tools == NULL) { |
1737 | 0 | code->_co_monitoring->line_tools = PyMem_Malloc(code_len); |
1738 | 0 | if (code->_co_monitoring->line_tools == NULL) { |
1739 | 0 | PyErr_NoMemory(); |
1740 | 0 | return -1; |
1741 | 0 | } |
1742 | 0 | initialize_line_tools(code, &all_events); |
1743 | 0 | } |
1744 | 0 | } |
1745 | 0 | if (all_events.tools[PY_MONITORING_EVENT_INSTRUCTION]) { |
1746 | 0 | if (code->_co_monitoring->per_instruction_opcodes == NULL) { |
1747 | 0 | code->_co_monitoring->per_instruction_opcodes = PyMem_Malloc(code_len * sizeof(_PyCoLineInstrumentationData)); |
1748 | 0 | if (code->_co_monitoring->per_instruction_opcodes == NULL) { |
1749 | 0 | PyErr_NoMemory(); |
1750 | 0 | return -1; |
1751 | 0 | } |
1752 | | // Initialize all of the instructions so if local events change while another thread is executing |
1753 | | // we know what the original opcode was. |
1754 | 0 | for (int i = 0; i < code_len; i++) { |
1755 | 0 | int opcode = _PyCode_CODE(code)[i].op.code; |
1756 | 0 | code->_co_monitoring->per_instruction_opcodes[i] = _PyOpcode_Deopt[opcode]; |
1757 | 0 | } |
1758 | 0 | } |
1759 | 0 | if (multitools && code->_co_monitoring->per_instruction_tools == NULL) { |
1760 | 0 | code->_co_monitoring->per_instruction_tools = PyMem_Malloc(code_len); |
1761 | 0 | if (code->_co_monitoring->per_instruction_tools == NULL) { |
1762 | 0 | PyErr_NoMemory(); |
1763 | 0 | return -1; |
1764 | 0 | } |
1765 | 0 | for (int i = 0; i < code_len; i++) { |
1766 | 0 | code->_co_monitoring->per_instruction_tools[i] = 0; |
1767 | 0 | } |
1768 | 0 | } |
1769 | 0 | } |
1770 | 0 | return 0; |
1771 | 0 | } |
1772 | | |
1773 | | static int |
1774 | | force_instrument_lock_held(PyCodeObject *code, PyInterpreterState *interp) |
1775 | 0 | { |
1776 | 0 | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1777 | |
|
1778 | | #ifdef _Py_TIER2 |
1779 | | if (code->co_executors != NULL) { |
1780 | | _PyCode_Clear_Executors(code); |
1781 | | } |
1782 | | _Py_Executors_InvalidateDependency(interp, code, 1); |
1783 | | #endif |
1784 | 0 | int code_len = (int)Py_SIZE(code); |
1785 | | /* Exit early to avoid creating instrumentation |
1786 | | * data for potential statically allocated code |
1787 | | * objects. |
1788 | | * See https://github.com/python/cpython/issues/108390 */ |
1789 | 0 | if (code->co_flags & CO_NO_MONITORING_EVENTS) { |
1790 | 0 | return 0; |
1791 | 0 | } |
1792 | 0 | if (update_instrumentation_data(code, interp)) { |
1793 | 0 | return -1; |
1794 | 0 | } |
1795 | 0 | _Py_LocalMonitors active_events = local_union( |
1796 | 0 | interp->monitors, |
1797 | 0 | code->_co_monitoring->local_monitors); |
1798 | 0 | _Py_LocalMonitors new_events; |
1799 | 0 | _Py_LocalMonitors removed_events; |
1800 | |
|
1801 | 0 | bool restarted = interp->last_restart_version > code->_co_instrumentation_version; |
1802 | 0 | if (restarted) { |
1803 | 0 | removed_events = code->_co_monitoring->active_monitors; |
1804 | 0 | new_events = active_events; |
1805 | 0 | } |
1806 | 0 | else { |
1807 | 0 | removed_events = monitors_sub(code->_co_monitoring->active_monitors, active_events); |
1808 | 0 | new_events = monitors_sub(active_events, code->_co_monitoring->active_monitors); |
1809 | 0 | assert(monitors_are_empty(monitors_and(new_events, removed_events))); |
1810 | 0 | } |
1811 | 0 | code->_co_monitoring->active_monitors = active_events; |
1812 | 0 | if (monitors_are_empty(new_events) && monitors_are_empty(removed_events)) { |
1813 | 0 | goto done; |
1814 | 0 | } |
1815 | | /* Insert instrumentation */ |
1816 | 0 | for (int i = code->_co_firsttraceable; i < code_len; i+= _PyInstruction_GetLength(code, i)) { |
1817 | 0 | assert(_PyCode_CODE(code)[i].op.code != ENTER_EXECUTOR); |
1818 | 0 | _Py_CODEUNIT instr = _Py_GetBaseCodeUnit(code, i); |
1819 | 0 | CHECK(instr.op.code != 0); |
1820 | 0 | int base_opcode = instr.op.code; |
1821 | 0 | if (opcode_has_event(base_opcode)) { |
1822 | 0 | int8_t event; |
1823 | 0 | if (base_opcode == RESUME) { |
1824 | 0 | event = instr.op.arg > 0; |
1825 | 0 | } |
1826 | 0 | else { |
1827 | 0 | event = EVENT_FOR_OPCODE[base_opcode]; |
1828 | 0 | assert(event > 0); |
1829 | 0 | } |
1830 | 0 | uint8_t removed_tools = removed_events.tools[event]; |
1831 | 0 | if (removed_tools) { |
1832 | 0 | remove_tools(code, i, event, removed_tools); |
1833 | 0 | } |
1834 | 0 | uint8_t new_tools = new_events.tools[event]; |
1835 | 0 | if (new_tools) { |
1836 | 0 | add_tools(code, i, event, new_tools); |
1837 | 0 | } |
1838 | 0 | } |
1839 | 0 | } |
1840 | | |
1841 | | // GH-103845: We need to remove both the line and instruction instrumentation before |
1842 | | // adding new ones, otherwise we may remove the newly added instrumentation. |
1843 | 0 | uint8_t removed_line_tools = removed_events.tools[PY_MONITORING_EVENT_LINE]; |
1844 | 0 | uint8_t removed_per_instruction_tools = removed_events.tools[PY_MONITORING_EVENT_INSTRUCTION]; |
1845 | |
|
1846 | 0 | if (removed_line_tools) { |
1847 | 0 | _PyCoLineInstrumentationData *line_data = code->_co_monitoring->lines; |
1848 | 0 | for (int i = code->_co_firsttraceable; i < code_len;) { |
1849 | 0 | if (get_original_opcode(line_data, i)) { |
1850 | 0 | remove_line_tools(code, i, removed_line_tools); |
1851 | 0 | } |
1852 | 0 | i += _PyInstruction_GetLength(code, i); |
1853 | 0 | } |
1854 | 0 | } |
1855 | 0 | if (removed_per_instruction_tools) { |
1856 | 0 | for (int i = code->_co_firsttraceable; i < code_len;) { |
1857 | 0 | int opcode = _Py_GetBaseCodeUnit(code, i).op.code; |
1858 | 0 | if (opcode == RESUME || opcode == END_FOR) { |
1859 | 0 | i += _PyInstruction_GetLength(code, i); |
1860 | 0 | continue; |
1861 | 0 | } |
1862 | 0 | remove_per_instruction_tools(code, i, removed_per_instruction_tools); |
1863 | 0 | i += _PyInstruction_GetLength(code, i); |
1864 | 0 | } |
1865 | 0 | } |
1866 | | #ifdef INSTRUMENT_DEBUG |
1867 | | sanity_check_instrumentation(code); |
1868 | | #endif |
1869 | |
|
1870 | 0 | uint8_t new_line_tools = new_events.tools[PY_MONITORING_EVENT_LINE]; |
1871 | 0 | uint8_t new_per_instruction_tools = new_events.tools[PY_MONITORING_EVENT_INSTRUCTION]; |
1872 | |
|
1873 | 0 | if (new_line_tools) { |
1874 | 0 | _PyCoLineInstrumentationData *line_data = code->_co_monitoring->lines; |
1875 | 0 | for (int i = code->_co_firsttraceable; i < code_len;) { |
1876 | 0 | if (get_original_opcode(line_data, i)) { |
1877 | 0 | add_line_tools(code, i, new_line_tools); |
1878 | 0 | } |
1879 | 0 | i += _PyInstruction_GetLength(code, i); |
1880 | 0 | } |
1881 | 0 | } |
1882 | 0 | if (new_per_instruction_tools) { |
1883 | 0 | for (int i = code->_co_firsttraceable; i < code_len;) { |
1884 | 0 | int opcode = _Py_GetBaseCodeUnit(code, i).op.code; |
1885 | 0 | if (opcode == RESUME || opcode == END_FOR) { |
1886 | 0 | i += _PyInstruction_GetLength(code, i); |
1887 | 0 | continue; |
1888 | 0 | } |
1889 | 0 | add_per_instruction_tools(code, i, new_per_instruction_tools); |
1890 | 0 | i += _PyInstruction_GetLength(code, i); |
1891 | 0 | } |
1892 | 0 | } |
1893 | |
|
1894 | 0 | done: |
1895 | 0 | FT_ATOMIC_STORE_UINTPTR_RELEASE(code->_co_instrumentation_version, |
1896 | 0 | global_version(interp)); |
1897 | |
|
1898 | | #ifdef INSTRUMENT_DEBUG |
1899 | | sanity_check_instrumentation(code); |
1900 | | #endif |
1901 | 0 | return 0; |
1902 | 0 | } |
1903 | | |
1904 | | static int |
1905 | | instrument_lock_held(PyCodeObject *code, PyInterpreterState *interp) |
1906 | 2.92k | { |
1907 | 2.92k | ASSERT_WORLD_STOPPED_OR_LOCKED(code); |
1908 | | |
1909 | 2.92k | if (is_version_up_to_date(code, interp)) { |
1910 | 2.92k | assert( |
1911 | 2.92k | interp->ceval.instrumentation_version == 0 || |
1912 | 2.92k | instrumentation_cross_checks(interp, code) |
1913 | 2.92k | ); |
1914 | 2.92k | return 0; |
1915 | 2.92k | } |
1916 | | |
1917 | 0 | return force_instrument_lock_held(code, interp); |
1918 | 2.92k | } |
1919 | | |
1920 | | int |
1921 | | _Py_Instrument(PyCodeObject *code, PyInterpreterState *interp) |
1922 | 2.92k | { |
1923 | 2.92k | int res; |
1924 | 2.92k | LOCK_CODE(code); |
1925 | 2.92k | res = instrument_lock_held(code, interp); |
1926 | 2.92k | UNLOCK_CODE(); |
1927 | 2.92k | return res; |
1928 | 2.92k | } |
1929 | | |
1930 | | #define C_RETURN_EVENTS \ |
1931 | 0 | ((1 << PY_MONITORING_EVENT_C_RETURN) | \ |
1932 | 0 | (1 << PY_MONITORING_EVENT_C_RAISE)) |
1933 | | |
1934 | | #define C_CALL_EVENTS \ |
1935 | 0 | (C_RETURN_EVENTS | (1 << PY_MONITORING_EVENT_CALL)) |
1936 | | |
1937 | | |
1938 | | static int |
1939 | 0 | instrument_all_executing_code_objects(PyInterpreterState *interp) { |
1940 | 0 | ASSERT_WORLD_STOPPED(); |
1941 | |
|
1942 | 0 | _PyRuntimeState *runtime = &_PyRuntime; |
1943 | 0 | HEAD_LOCK(runtime); |
1944 | 0 | PyThreadState* ts = PyInterpreterState_ThreadHead(interp); |
1945 | 0 | HEAD_UNLOCK(runtime); |
1946 | 0 | while (ts) { |
1947 | 0 | _PyInterpreterFrame *frame = ts->current_frame; |
1948 | 0 | while (frame) { |
1949 | 0 | if (frame->owner < FRAME_OWNED_BY_INTERPRETER) { |
1950 | 0 | if (instrument_lock_held(_PyFrame_GetCode(frame), interp)) { |
1951 | 0 | return -1; |
1952 | 0 | } |
1953 | 0 | } |
1954 | 0 | frame = frame->previous; |
1955 | 0 | } |
1956 | 0 | HEAD_LOCK(runtime); |
1957 | 0 | ts = PyThreadState_Next(ts); |
1958 | 0 | HEAD_UNLOCK(runtime); |
1959 | 0 | } |
1960 | 0 | return 0; |
1961 | 0 | } |
1962 | | |
1963 | | static void |
1964 | | set_events(_Py_GlobalMonitors *m, int tool_id, _PyMonitoringEventSet events) |
1965 | 0 | { |
1966 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
1967 | 0 | for (int e = 0; e < _PY_MONITORING_UNGROUPED_EVENTS; e++) { |
1968 | 0 | uint8_t *tools = &m->tools[e]; |
1969 | 0 | int active = (events >> e) & 1; |
1970 | 0 | *tools &= ~(1 << tool_id); |
1971 | 0 | *tools |= (active << tool_id); |
1972 | 0 | } |
1973 | 0 | } |
1974 | | |
1975 | | static void |
1976 | | set_local_events(_Py_LocalMonitors *m, int tool_id, _PyMonitoringEventSet events) |
1977 | 0 | { |
1978 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
1979 | 0 | for (int e = 0; e < _PY_MONITORING_LOCAL_EVENTS; e++) { |
1980 | 0 | uint8_t *tools = &m->tools[e]; |
1981 | 0 | int val = (events >> e) & 1; |
1982 | 0 | *tools &= ~(1 << tool_id); |
1983 | 0 | *tools |= (val << tool_id); |
1984 | 0 | } |
1985 | 0 | } |
1986 | | |
1987 | | static int |
1988 | | check_tool(PyInterpreterState *interp, int tool_id) |
1989 | 0 | { |
1990 | 0 | if (tool_id < PY_MONITORING_SYS_PROFILE_ID && |
1991 | 0 | interp->monitoring_tool_names[tool_id] == NULL) |
1992 | 0 | { |
1993 | 0 | PyErr_Format(PyExc_ValueError, "tool %d is not in use", tool_id); |
1994 | 0 | return -1; |
1995 | 0 | } |
1996 | 0 | return 0; |
1997 | 0 | } |
1998 | | |
1999 | | /* We share the eval-breaker with flags, so the monitoring |
2000 | | * version goes in the top 24 bits */ |
2001 | 0 | #define MONITORING_VERSION_INCREMENT (1 << _PY_EVAL_EVENTS_BITS) |
2002 | | |
2003 | | int |
2004 | | _PyMonitoring_SetEvents(int tool_id, _PyMonitoringEventSet events) |
2005 | 0 | { |
2006 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
2007 | 0 | PyThreadState *tstate = _PyThreadState_GET(); |
2008 | 0 | PyInterpreterState *interp = tstate->interp; |
2009 | 0 | assert(events < (1 << _PY_MONITORING_UNGROUPED_EVENTS)); |
2010 | 0 | if (check_tool(interp, tool_id)) { |
2011 | 0 | return -1; |
2012 | 0 | } |
2013 | | |
2014 | 0 | int res; |
2015 | 0 | _PyEval_StopTheWorld(interp); |
2016 | 0 | uint32_t existing_events = get_events(&interp->monitors, tool_id); |
2017 | 0 | if (existing_events == events) { |
2018 | 0 | res = 0; |
2019 | 0 | goto done; |
2020 | 0 | } |
2021 | 0 | set_events(&interp->monitors, tool_id, events); |
2022 | 0 | uint32_t new_version = global_version(interp) + MONITORING_VERSION_INCREMENT; |
2023 | 0 | if (new_version == 0) { |
2024 | 0 | PyErr_Format(PyExc_OverflowError, "events set too many times"); |
2025 | 0 | res = -1; |
2026 | 0 | goto done; |
2027 | 0 | } |
2028 | 0 | set_global_version(tstate, new_version); |
2029 | | #ifdef _Py_TIER2 |
2030 | | _Py_Executors_InvalidateAll(interp, 1); |
2031 | | #endif |
2032 | 0 | res = instrument_all_executing_code_objects(interp); |
2033 | 0 | done: |
2034 | 0 | _PyEval_StartTheWorld(interp); |
2035 | 0 | return res; |
2036 | 0 | } |
2037 | | |
2038 | | int |
2039 | | _PyMonitoring_SetLocalEvents(PyCodeObject *code, int tool_id, _PyMonitoringEventSet events) |
2040 | 0 | { |
2041 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
2042 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2043 | 0 | assert(events < (1 << _PY_MONITORING_LOCAL_EVENTS)); |
2044 | 0 | if (code->_co_firsttraceable >= Py_SIZE(code)) { |
2045 | 0 | PyErr_Format(PyExc_SystemError, "cannot instrument shim code object '%U'", code->co_name); |
2046 | 0 | return -1; |
2047 | 0 | } |
2048 | 0 | if (check_tool(interp, tool_id)) { |
2049 | 0 | return -1; |
2050 | 0 | } |
2051 | | |
2052 | 0 | int res; |
2053 | 0 | _PyEval_StopTheWorld(interp); |
2054 | 0 | if (allocate_instrumentation_data(code)) { |
2055 | 0 | res = -1; |
2056 | 0 | goto done; |
2057 | 0 | } |
2058 | | |
2059 | 0 | code->_co_monitoring->tool_versions[tool_id] = interp->monitoring_tool_versions[tool_id]; |
2060 | |
|
2061 | 0 | _Py_LocalMonitors *local = &code->_co_monitoring->local_monitors; |
2062 | 0 | uint32_t existing_events = get_local_events(local, tool_id); |
2063 | 0 | if (existing_events == events) { |
2064 | 0 | res = 0; |
2065 | 0 | goto done; |
2066 | 0 | } |
2067 | 0 | set_local_events(local, tool_id, events); |
2068 | |
|
2069 | 0 | res = force_instrument_lock_held(code, interp); |
2070 | |
|
2071 | 0 | done: |
2072 | 0 | _PyEval_StartTheWorld(interp); |
2073 | 0 | return res; |
2074 | 0 | } |
2075 | | |
2076 | | int |
2077 | | _PyMonitoring_GetLocalEvents(PyCodeObject *code, int tool_id, _PyMonitoringEventSet *events) |
2078 | 0 | { |
2079 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
2080 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2081 | 0 | if (check_tool(interp, tool_id)) { |
2082 | 0 | return -1; |
2083 | 0 | } |
2084 | 0 | if (code->_co_monitoring == NULL) { |
2085 | 0 | *events = 0; |
2086 | 0 | return 0; |
2087 | 0 | } |
2088 | 0 | _Py_LocalMonitors *local = &code->_co_monitoring->local_monitors; |
2089 | 0 | *events = get_local_events(local, tool_id); |
2090 | 0 | return 0; |
2091 | 0 | } |
2092 | | |
2093 | | int _PyMonitoring_ClearToolId(int tool_id) |
2094 | 0 | { |
2095 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
2096 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2097 | |
|
2098 | 0 | for (int i = 0; i < _PY_MONITORING_EVENTS; i++) { |
2099 | 0 | PyObject *func = _PyMonitoring_RegisterCallback(tool_id, i, NULL); |
2100 | 0 | if (func != NULL) { |
2101 | 0 | Py_DECREF(func); |
2102 | 0 | } |
2103 | 0 | } |
2104 | |
|
2105 | 0 | if (_PyMonitoring_SetEvents(tool_id, 0) < 0) { |
2106 | 0 | return -1; |
2107 | 0 | } |
2108 | | |
2109 | 0 | _PyEval_StopTheWorld(interp); |
2110 | 0 | uint32_t version = global_version(interp) + MONITORING_VERSION_INCREMENT; |
2111 | 0 | if (version == 0) { |
2112 | 0 | PyErr_Format(PyExc_OverflowError, "events set too many times"); |
2113 | 0 | _PyEval_StartTheWorld(interp); |
2114 | 0 | return -1; |
2115 | 0 | } |
2116 | | |
2117 | | // monitoring_tool_versions[tool_id] is set to latest global version here to |
2118 | | // 1. invalidate local events on all existing code objects |
2119 | | // 2. be ready for the next call to set local events |
2120 | 0 | interp->monitoring_tool_versions[tool_id] = version; |
2121 | | |
2122 | | // Set the new global version so all the code objects can refresh the |
2123 | | // instrumentation. |
2124 | 0 | set_global_version(_PyThreadState_GET(), version); |
2125 | 0 | int res = instrument_all_executing_code_objects(interp); |
2126 | 0 | _PyEval_StartTheWorld(interp); |
2127 | 0 | return res; |
2128 | 0 | } |
2129 | | |
2130 | | /*[clinic input] |
2131 | | module monitoring |
2132 | | [clinic start generated code]*/ |
2133 | | /*[clinic end generated code: output=da39a3ee5e6b4b0d input=37257f5987a360cf]*/ |
2134 | | /*[clinic end generated code]*/ |
2135 | | |
2136 | | #include "clinic/instrumentation.c.h" |
2137 | | |
2138 | | static int |
2139 | | check_valid_tool(int tool_id) |
2140 | 0 | { |
2141 | 0 | if (tool_id < 0 || tool_id >= PY_MONITORING_SYS_PROFILE_ID) { |
2142 | 0 | PyErr_Format(PyExc_ValueError, "invalid tool %d (must be between 0 and 5)", tool_id); |
2143 | 0 | return -1; |
2144 | 0 | } |
2145 | 0 | return 0; |
2146 | 0 | } |
2147 | | |
2148 | | /*[clinic input] |
2149 | | monitoring.use_tool_id |
2150 | | |
2151 | | tool_id: int |
2152 | | name: object |
2153 | | / |
2154 | | |
2155 | | [clinic start generated code]*/ |
2156 | | |
2157 | | static PyObject * |
2158 | | monitoring_use_tool_id_impl(PyObject *module, int tool_id, PyObject *name) |
2159 | | /*[clinic end generated code: output=30d76dc92b7cd653 input=ebc453761c621be1]*/ |
2160 | 0 | { |
2161 | 0 | if (check_valid_tool(tool_id)) { |
2162 | 0 | return NULL; |
2163 | 0 | } |
2164 | 0 | if (!PyUnicode_Check(name)) { |
2165 | 0 | PyErr_SetString(PyExc_ValueError, "tool name must be a str"); |
2166 | 0 | return NULL; |
2167 | 0 | } |
2168 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2169 | 0 | if (interp->monitoring_tool_names[tool_id] != NULL) { |
2170 | 0 | PyErr_Format(PyExc_ValueError, "tool %d is already in use", tool_id); |
2171 | 0 | return NULL; |
2172 | 0 | } |
2173 | 0 | interp->monitoring_tool_names[tool_id] = Py_NewRef(name); |
2174 | 0 | Py_RETURN_NONE; |
2175 | 0 | } |
2176 | | |
2177 | | /*[clinic input] |
2178 | | monitoring.clear_tool_id |
2179 | | |
2180 | | tool_id: int |
2181 | | / |
2182 | | |
2183 | | [clinic start generated code]*/ |
2184 | | |
2185 | | static PyObject * |
2186 | | monitoring_clear_tool_id_impl(PyObject *module, int tool_id) |
2187 | | /*[clinic end generated code: output=04defc23470b1be7 input=af643d6648a66163]*/ |
2188 | 0 | { |
2189 | 0 | if (check_valid_tool(tool_id)) { |
2190 | 0 | return NULL; |
2191 | 0 | } |
2192 | | |
2193 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2194 | |
|
2195 | 0 | if (interp->monitoring_tool_names[tool_id] != NULL) { |
2196 | 0 | if (_PyMonitoring_ClearToolId(tool_id) < 0) { |
2197 | 0 | return NULL; |
2198 | 0 | } |
2199 | 0 | } |
2200 | | |
2201 | 0 | Py_RETURN_NONE; |
2202 | 0 | } |
2203 | | |
2204 | | /*[clinic input] |
2205 | | monitoring.free_tool_id |
2206 | | |
2207 | | tool_id: int |
2208 | | / |
2209 | | |
2210 | | [clinic start generated code]*/ |
2211 | | |
2212 | | static PyObject * |
2213 | | monitoring_free_tool_id_impl(PyObject *module, int tool_id) |
2214 | | /*[clinic end generated code: output=86c2d2a1219a8591 input=a23fb6be3a8618e9]*/ |
2215 | 0 | { |
2216 | 0 | if (check_valid_tool(tool_id)) { |
2217 | 0 | return NULL; |
2218 | 0 | } |
2219 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2220 | |
|
2221 | 0 | if (interp->monitoring_tool_names[tool_id] != NULL) { |
2222 | 0 | if (_PyMonitoring_ClearToolId(tool_id) < 0) { |
2223 | 0 | return NULL; |
2224 | 0 | } |
2225 | 0 | } |
2226 | | |
2227 | 0 | Py_CLEAR(interp->monitoring_tool_names[tool_id]); |
2228 | 0 | Py_RETURN_NONE; |
2229 | 0 | } |
2230 | | |
2231 | | /*[clinic input] |
2232 | | monitoring.get_tool |
2233 | | |
2234 | | tool_id: int |
2235 | | / |
2236 | | |
2237 | | [clinic start generated code]*/ |
2238 | | |
2239 | | static PyObject * |
2240 | | monitoring_get_tool_impl(PyObject *module, int tool_id) |
2241 | | /*[clinic end generated code: output=1c05a98b404a9a16 input=eeee9bebd0bcae9d]*/ |
2242 | | |
2243 | | /*[clinic end generated code]*/ |
2244 | 0 | { |
2245 | 0 | if (check_valid_tool(tool_id)) { |
2246 | 0 | return NULL; |
2247 | 0 | } |
2248 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2249 | 0 | PyObject *name = interp->monitoring_tool_names[tool_id]; |
2250 | 0 | if (name == NULL) { |
2251 | 0 | Py_RETURN_NONE; |
2252 | 0 | } |
2253 | 0 | return Py_NewRef(name); |
2254 | 0 | } |
2255 | | |
2256 | | /*[clinic input] |
2257 | | monitoring.register_callback |
2258 | | |
2259 | | |
2260 | | tool_id: int |
2261 | | event: int |
2262 | | func: object |
2263 | | / |
2264 | | |
2265 | | [clinic start generated code]*/ |
2266 | | |
2267 | | static PyObject * |
2268 | | monitoring_register_callback_impl(PyObject *module, int tool_id, int event, |
2269 | | PyObject *func) |
2270 | | /*[clinic end generated code: output=e64daa363004030c input=df6d70ea4cf81007]*/ |
2271 | 0 | { |
2272 | 0 | if (check_valid_tool(tool_id)) { |
2273 | 0 | return NULL; |
2274 | 0 | } |
2275 | 0 | if (_Py_popcount32(event) != 1) { |
2276 | 0 | PyErr_SetString(PyExc_ValueError, "The callback can only be set for one event at a time"); |
2277 | 0 | return NULL; |
2278 | 0 | } |
2279 | 0 | int event_id = _Py_bit_length(event)-1; |
2280 | 0 | if (event_id < 0 || event_id >= _PY_MONITORING_EVENTS) { |
2281 | 0 | PyErr_Format(PyExc_ValueError, "invalid event %d", event); |
2282 | 0 | return NULL; |
2283 | 0 | } |
2284 | 0 | if (PySys_Audit("sys.monitoring.register_callback", "O", func) < 0) { |
2285 | 0 | return NULL; |
2286 | 0 | } |
2287 | 0 | if (func == Py_None) { |
2288 | 0 | func = NULL; |
2289 | 0 | } |
2290 | 0 | func = _PyMonitoring_RegisterCallback(tool_id, event_id, func); |
2291 | 0 | if (func == NULL) { |
2292 | 0 | Py_RETURN_NONE; |
2293 | 0 | } |
2294 | 0 | return func; |
2295 | 0 | } |
2296 | | |
2297 | | /*[clinic input] |
2298 | | monitoring.get_events -> int |
2299 | | |
2300 | | tool_id: int |
2301 | | / |
2302 | | |
2303 | | [clinic start generated code]*/ |
2304 | | |
2305 | | static int |
2306 | | monitoring_get_events_impl(PyObject *module, int tool_id) |
2307 | | /*[clinic end generated code: output=4450cc13f826c8c0 input=a64b238f76c4b2f7]*/ |
2308 | 0 | { |
2309 | 0 | if (check_valid_tool(tool_id)) { |
2310 | 0 | return -1; |
2311 | 0 | } |
2312 | 0 | _Py_GlobalMonitors *m = &_PyInterpreterState_GET()->monitors; |
2313 | 0 | _PyMonitoringEventSet event_set = get_events(m, tool_id); |
2314 | 0 | return event_set; |
2315 | 0 | } |
2316 | | |
2317 | | /*[clinic input] |
2318 | | monitoring.set_events |
2319 | | |
2320 | | tool_id: int |
2321 | | event_set: int |
2322 | | / |
2323 | | |
2324 | | [clinic start generated code]*/ |
2325 | | |
2326 | | static PyObject * |
2327 | | monitoring_set_events_impl(PyObject *module, int tool_id, int event_set) |
2328 | | /*[clinic end generated code: output=1916c1e49cfb5bdb input=a77ba729a242142b]*/ |
2329 | 0 | { |
2330 | 0 | if (check_valid_tool(tool_id)) { |
2331 | 0 | return NULL; |
2332 | 0 | } |
2333 | 0 | if (event_set < 0 || event_set >= (1 << _PY_MONITORING_EVENTS)) { |
2334 | 0 | PyErr_Format(PyExc_ValueError, "invalid event set 0x%x", event_set); |
2335 | 0 | return NULL; |
2336 | 0 | } |
2337 | 0 | if ((event_set & C_RETURN_EVENTS) && (event_set & C_CALL_EVENTS) != C_CALL_EVENTS) { |
2338 | 0 | PyErr_Format(PyExc_ValueError, "cannot set C_RETURN or C_RAISE events independently"); |
2339 | 0 | return NULL; |
2340 | 0 | } |
2341 | 0 | event_set &= ~C_RETURN_EVENTS; |
2342 | 0 | if (event_set & (1 << PY_MONITORING_EVENT_BRANCH)) { |
2343 | 0 | event_set &= ~(1 << PY_MONITORING_EVENT_BRANCH); |
2344 | 0 | event_set |= (1 << PY_MONITORING_EVENT_BRANCH_RIGHT) | (1 << PY_MONITORING_EVENT_BRANCH_LEFT); |
2345 | 0 | } |
2346 | 0 | if (_PyMonitoring_SetEvents(tool_id, event_set)) { |
2347 | 0 | return NULL; |
2348 | 0 | } |
2349 | 0 | Py_RETURN_NONE; |
2350 | 0 | } |
2351 | | |
2352 | | /*[clinic input] |
2353 | | monitoring.get_local_events -> int |
2354 | | |
2355 | | tool_id: int |
2356 | | code: object |
2357 | | / |
2358 | | |
2359 | | [clinic start generated code]*/ |
2360 | | |
2361 | | static int |
2362 | | monitoring_get_local_events_impl(PyObject *module, int tool_id, |
2363 | | PyObject *code) |
2364 | | /*[clinic end generated code: output=d3e92c1c9c1de8f9 input=bb0f927530386a94]*/ |
2365 | 0 | { |
2366 | 0 | if (!PyCode_Check(code)) { |
2367 | 0 | PyErr_Format( |
2368 | 0 | PyExc_TypeError, |
2369 | 0 | "code must be a code object" |
2370 | 0 | ); |
2371 | 0 | return -1; |
2372 | 0 | } |
2373 | 0 | if (check_valid_tool(tool_id)) { |
2374 | 0 | return -1; |
2375 | 0 | } |
2376 | 0 | _PyMonitoringEventSet event_set = 0; |
2377 | 0 | _PyCoMonitoringData *data = ((PyCodeObject *)code)->_co_monitoring; |
2378 | 0 | if (data != NULL) { |
2379 | 0 | for (int e = 0; e < _PY_MONITORING_LOCAL_EVENTS; e++) { |
2380 | 0 | if ((data->local_monitors.tools[e] >> tool_id) & 1) { |
2381 | 0 | event_set |= (1 << e); |
2382 | 0 | } |
2383 | 0 | } |
2384 | 0 | } |
2385 | 0 | return event_set; |
2386 | 0 | } |
2387 | | |
2388 | | /*[clinic input] |
2389 | | monitoring.set_local_events |
2390 | | |
2391 | | tool_id: int |
2392 | | code: object |
2393 | | event_set: int |
2394 | | / |
2395 | | |
2396 | | [clinic start generated code]*/ |
2397 | | |
2398 | | static PyObject * |
2399 | | monitoring_set_local_events_impl(PyObject *module, int tool_id, |
2400 | | PyObject *code, int event_set) |
2401 | | /*[clinic end generated code: output=68cc755a65dfea99 input=5655ecd78d937a29]*/ |
2402 | 0 | { |
2403 | 0 | if (!PyCode_Check(code)) { |
2404 | 0 | PyErr_Format( |
2405 | 0 | PyExc_TypeError, |
2406 | 0 | "code must be a code object" |
2407 | 0 | ); |
2408 | 0 | return NULL; |
2409 | 0 | } |
2410 | 0 | if (check_valid_tool(tool_id)) { |
2411 | 0 | return NULL; |
2412 | 0 | } |
2413 | 0 | if ((event_set & C_RETURN_EVENTS) && (event_set & C_CALL_EVENTS) != C_CALL_EVENTS) { |
2414 | 0 | PyErr_Format(PyExc_ValueError, "cannot set C_RETURN or C_RAISE events independently"); |
2415 | 0 | return NULL; |
2416 | 0 | } |
2417 | 0 | event_set &= ~C_RETURN_EVENTS; |
2418 | 0 | if (event_set & (1 << PY_MONITORING_EVENT_BRANCH)) { |
2419 | 0 | event_set &= ~(1 << PY_MONITORING_EVENT_BRANCH); |
2420 | 0 | event_set |= (1 << PY_MONITORING_EVENT_BRANCH_RIGHT) | (1 << PY_MONITORING_EVENT_BRANCH_LEFT); |
2421 | 0 | } |
2422 | 0 | if (event_set < 0 || event_set >= (1 << _PY_MONITORING_LOCAL_EVENTS)) { |
2423 | 0 | PyErr_Format(PyExc_ValueError, "invalid local event set 0x%x", event_set); |
2424 | 0 | return NULL; |
2425 | 0 | } |
2426 | | |
2427 | 0 | if (_PyMonitoring_SetLocalEvents((PyCodeObject*)code, tool_id, event_set)) { |
2428 | 0 | return NULL; |
2429 | 0 | } |
2430 | 0 | Py_RETURN_NONE; |
2431 | 0 | } |
2432 | | |
2433 | | /*[clinic input] |
2434 | | monitoring.restart_events |
2435 | | |
2436 | | [clinic start generated code]*/ |
2437 | | |
2438 | | static PyObject * |
2439 | | monitoring_restart_events_impl(PyObject *module) |
2440 | | /*[clinic end generated code: output=e025dd5ba33314c4 input=add8a855063c8008]*/ |
2441 | 0 | { |
2442 | | /* We want to ensure that: |
2443 | | * last restart version > instrumented version for all code objects |
2444 | | * last restart version < current version |
2445 | | */ |
2446 | 0 | PyThreadState *tstate = _PyThreadState_GET(); |
2447 | 0 | PyInterpreterState *interp = tstate->interp; |
2448 | |
|
2449 | 0 | _PyEval_StopTheWorld(interp); |
2450 | 0 | uint32_t restart_version = global_version(interp) + MONITORING_VERSION_INCREMENT; |
2451 | 0 | uint32_t new_version = restart_version + MONITORING_VERSION_INCREMENT; |
2452 | 0 | if (new_version <= MONITORING_VERSION_INCREMENT) { |
2453 | 0 | _PyEval_StartTheWorld(interp); |
2454 | 0 | PyErr_Format(PyExc_OverflowError, "events set too many times"); |
2455 | 0 | return NULL; |
2456 | 0 | } |
2457 | 0 | interp->last_restart_version = restart_version; |
2458 | 0 | set_global_version(tstate, new_version); |
2459 | 0 | int res = instrument_all_executing_code_objects(interp); |
2460 | 0 | _PyEval_StartTheWorld(interp); |
2461 | |
|
2462 | 0 | if (res) { |
2463 | 0 | return NULL; |
2464 | 0 | } |
2465 | 0 | Py_RETURN_NONE; |
2466 | 0 | } |
2467 | | |
2468 | | static int |
2469 | | add_power2_constant(PyObject *obj, const char *name, int i) |
2470 | 304 | { |
2471 | 304 | PyObject *val = PyLong_FromLong(1<<i); |
2472 | 304 | if (val == NULL) { |
2473 | 0 | return -1; |
2474 | 0 | } |
2475 | 304 | int err = PyObject_SetAttrString(obj, name, val); |
2476 | 304 | Py_DECREF(val); |
2477 | 304 | return err; |
2478 | 304 | } |
2479 | | |
2480 | | /*[clinic input] |
2481 | | monitoring._all_events |
2482 | | [clinic start generated code]*/ |
2483 | | |
2484 | | static PyObject * |
2485 | | monitoring__all_events_impl(PyObject *module) |
2486 | | /*[clinic end generated code: output=6b7581e2dbb690f6 input=62ee9672c17b7f0e]*/ |
2487 | 0 | { |
2488 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2489 | 0 | PyObject *res = PyDict_New(); |
2490 | 0 | if (res == NULL) { |
2491 | 0 | return NULL; |
2492 | 0 | } |
2493 | 0 | for (int e = 0; e < _PY_MONITORING_UNGROUPED_EVENTS; e++) { |
2494 | 0 | uint8_t tools = interp->monitors.tools[e]; |
2495 | 0 | if (tools == 0) { |
2496 | 0 | continue; |
2497 | 0 | } |
2498 | 0 | PyObject *tools_obj = PyLong_FromLong(tools); |
2499 | 0 | assert(tools_obj != NULL); |
2500 | 0 | int err = PyDict_SetItemString(res, event_names[e], tools_obj); |
2501 | 0 | Py_DECREF(tools_obj); |
2502 | 0 | if (err < 0) { |
2503 | 0 | Py_DECREF(res); |
2504 | 0 | return NULL; |
2505 | 0 | } |
2506 | 0 | } |
2507 | 0 | return res; |
2508 | 0 | } |
2509 | | |
2510 | | static PyMethodDef methods[] = { |
2511 | | MONITORING_USE_TOOL_ID_METHODDEF |
2512 | | MONITORING_CLEAR_TOOL_ID_METHODDEF |
2513 | | MONITORING_FREE_TOOL_ID_METHODDEF |
2514 | | MONITORING_GET_TOOL_METHODDEF |
2515 | | MONITORING_REGISTER_CALLBACK_METHODDEF |
2516 | | MONITORING_GET_EVENTS_METHODDEF |
2517 | | MONITORING_SET_EVENTS_METHODDEF |
2518 | | MONITORING_GET_LOCAL_EVENTS_METHODDEF |
2519 | | MONITORING_SET_LOCAL_EVENTS_METHODDEF |
2520 | | MONITORING_RESTART_EVENTS_METHODDEF |
2521 | | MONITORING__ALL_EVENTS_METHODDEF |
2522 | | {NULL, NULL} // sentinel |
2523 | | }; |
2524 | | |
2525 | | static struct PyModuleDef monitoring_module = { |
2526 | | PyModuleDef_HEAD_INIT, |
2527 | | .m_name = "sys.monitoring", |
2528 | | .m_size = -1, /* multiple "initialization" just copies the module dict. */ |
2529 | | .m_methods = methods, |
2530 | | }; |
2531 | | |
2532 | | PyObject *_Py_CreateMonitoringObject(void) |
2533 | 16 | { |
2534 | 16 | PyObject *mod = _PyModule_CreateInitialized(&monitoring_module, PYTHON_API_VERSION); |
2535 | 16 | if (mod == NULL) { |
2536 | 0 | return NULL; |
2537 | 0 | } |
2538 | 16 | if (PyObject_SetAttrString(mod, "DISABLE", &_PyInstrumentation_DISABLE)) { |
2539 | 0 | goto error; |
2540 | 0 | } |
2541 | 16 | if (PyObject_SetAttrString(mod, "MISSING", &_PyInstrumentation_MISSING)) { |
2542 | 0 | goto error; |
2543 | 0 | } |
2544 | 16 | PyObject *events = _PyNamespace_New(NULL); |
2545 | 16 | if (events == NULL) { |
2546 | 0 | goto error; |
2547 | 0 | } |
2548 | 16 | int err = PyObject_SetAttrString(mod, "events", events); |
2549 | 16 | Py_DECREF(events); |
2550 | 16 | if (err) { |
2551 | 0 | goto error; |
2552 | 0 | } |
2553 | 320 | for (int i = 0; i < _PY_MONITORING_EVENTS; i++) { |
2554 | 304 | if (add_power2_constant(events, event_names[i], i)) { |
2555 | 0 | goto error; |
2556 | 0 | } |
2557 | 304 | } |
2558 | 16 | err = PyObject_SetAttrString(events, "NO_EVENTS", _PyLong_GetZero()); |
2559 | 16 | if (err) goto error; |
2560 | 16 | PyObject *val = PyLong_FromLong(PY_MONITORING_DEBUGGER_ID); |
2561 | 16 | err = PyObject_SetAttrString(mod, "DEBUGGER_ID", val); |
2562 | 16 | Py_DECREF(val); |
2563 | 16 | if (err) goto error; |
2564 | 16 | val = PyLong_FromLong(PY_MONITORING_COVERAGE_ID); |
2565 | 16 | err = PyObject_SetAttrString(mod, "COVERAGE_ID", val); |
2566 | 16 | Py_DECREF(val); |
2567 | 16 | if (err) goto error; |
2568 | 16 | val = PyLong_FromLong(PY_MONITORING_PROFILER_ID); |
2569 | 16 | err = PyObject_SetAttrString(mod, "PROFILER_ID", val); |
2570 | 16 | Py_DECREF(val); |
2571 | 16 | if (err) goto error; |
2572 | 16 | val = PyLong_FromLong(PY_MONITORING_OPTIMIZER_ID); |
2573 | 16 | err = PyObject_SetAttrString(mod, "OPTIMIZER_ID", val); |
2574 | 16 | Py_DECREF(val); |
2575 | 16 | if (err) goto error; |
2576 | 16 | return mod; |
2577 | 0 | error: |
2578 | 0 | Py_DECREF(mod); |
2579 | 0 | return NULL; |
2580 | 16 | } |
2581 | | |
2582 | | |
2583 | | static int |
2584 | | capi_call_instrumentation(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2585 | | PyObject **args, Py_ssize_t nargs, int event) |
2586 | 0 | { |
2587 | 0 | PyThreadState *tstate = _PyThreadState_GET(); |
2588 | 0 | PyInterpreterState *interp = tstate->interp; |
2589 | |
|
2590 | 0 | uint8_t tools = state->active; |
2591 | 0 | assert(args[1] == NULL); |
2592 | 0 | args[1] = codelike; |
2593 | 0 | if (offset < 0) { |
2594 | 0 | PyErr_SetString(PyExc_ValueError, "offset must be non-negative"); |
2595 | 0 | return -1; |
2596 | 0 | } |
2597 | 0 | if (event != PY_MONITORING_EVENT_LINE) { |
2598 | 0 | PyObject *offset_obj = PyLong_FromLong(offset); |
2599 | 0 | if (offset_obj == NULL) { |
2600 | 0 | return -1; |
2601 | 0 | } |
2602 | 0 | assert(args[2] == NULL); |
2603 | 0 | args[2] = offset_obj; |
2604 | 0 | } |
2605 | 0 | size_t nargsf = (size_t) nargs | PY_VECTORCALL_ARGUMENTS_OFFSET; |
2606 | 0 | PyObject **callargs = &args[1]; |
2607 | 0 | int err = 0; |
2608 | |
|
2609 | 0 | while (tools) { |
2610 | 0 | int tool = most_significant_bit(tools); |
2611 | 0 | assert(tool >= 0 && tool < 8); |
2612 | 0 | assert(tools & (1 << tool)); |
2613 | 0 | tools ^= (1 << tool); |
2614 | 0 | int res = call_one_instrument(interp, tstate, callargs, nargsf, tool, event); |
2615 | 0 | if (res == 0) { |
2616 | | /* Nothing to do */ |
2617 | 0 | } |
2618 | 0 | else if (res < 0) { |
2619 | | /* error */ |
2620 | 0 | err = -1; |
2621 | 0 | break; |
2622 | 0 | } |
2623 | 0 | else { |
2624 | | /* DISABLE */ |
2625 | 0 | if (!PY_MONITORING_IS_INSTRUMENTED_EVENT(event)) { |
2626 | 0 | PyErr_Format(PyExc_ValueError, |
2627 | 0 | "Cannot disable %s events. Callback removed.", |
2628 | 0 | event_names[event]); |
2629 | | /* Clear tool to prevent infinite loop */ |
2630 | 0 | Py_CLEAR(interp->monitoring_callables[tool][event]); |
2631 | 0 | err = -1; |
2632 | 0 | break; |
2633 | 0 | } |
2634 | 0 | else { |
2635 | 0 | state->active &= ~(1 << tool); |
2636 | 0 | } |
2637 | 0 | } |
2638 | 0 | } |
2639 | 0 | return err; |
2640 | 0 | } |
2641 | | |
2642 | | int |
2643 | | PyMonitoring_EnterScope(PyMonitoringState *state_array, uint64_t *version, |
2644 | | const uint8_t *event_types, Py_ssize_t length) |
2645 | 0 | { |
2646 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
2647 | 0 | if (global_version(interp) == *version) { |
2648 | 0 | return 0; |
2649 | 0 | } |
2650 | | |
2651 | 0 | _Py_GlobalMonitors *m = &interp->monitors; |
2652 | 0 | for (Py_ssize_t i = 0; i < length; i++) { |
2653 | 0 | int event = event_types[i]; |
2654 | 0 | state_array[i].active = m->tools[event]; |
2655 | 0 | } |
2656 | 0 | *version = global_version(interp); |
2657 | 0 | return 0; |
2658 | 0 | } |
2659 | | |
2660 | | int |
2661 | | PyMonitoring_ExitScope(void) |
2662 | 0 | { |
2663 | 0 | return 0; |
2664 | 0 | } |
2665 | | |
2666 | | int |
2667 | | _PyMonitoring_FirePyStartEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2668 | 0 | { |
2669 | 0 | assert(state->active); |
2670 | 0 | PyObject *args[3] = { NULL, NULL, NULL }; |
2671 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 2, |
2672 | 0 | PY_MONITORING_EVENT_PY_START); |
2673 | 0 | } |
2674 | | |
2675 | | int |
2676 | | _PyMonitoring_FirePyResumeEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2677 | 0 | { |
2678 | 0 | assert(state->active); |
2679 | 0 | PyObject *args[3] = { NULL, NULL, NULL }; |
2680 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 2, |
2681 | 0 | PY_MONITORING_EVENT_PY_RESUME); |
2682 | 0 | } |
2683 | | |
2684 | | |
2685 | | |
2686 | | int |
2687 | | _PyMonitoring_FirePyReturnEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2688 | | PyObject* retval) |
2689 | 0 | { |
2690 | 0 | assert(state->active); |
2691 | 0 | PyObject *args[4] = { NULL, NULL, NULL, retval }; |
2692 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2693 | 0 | PY_MONITORING_EVENT_PY_RETURN); |
2694 | 0 | } |
2695 | | |
2696 | | int |
2697 | | _PyMonitoring_FirePyYieldEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2698 | | PyObject* retval) |
2699 | 0 | { |
2700 | 0 | assert(state->active); |
2701 | 0 | PyObject *args[4] = { NULL, NULL, NULL, retval }; |
2702 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2703 | 0 | PY_MONITORING_EVENT_PY_YIELD); |
2704 | 0 | } |
2705 | | |
2706 | | int |
2707 | | _PyMonitoring_FireCallEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2708 | | PyObject* callable, PyObject *arg0) |
2709 | 0 | { |
2710 | 0 | assert(state->active); |
2711 | 0 | PyObject *args[5] = { NULL, NULL, NULL, callable, arg0 }; |
2712 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 4, |
2713 | 0 | PY_MONITORING_EVENT_CALL); |
2714 | 0 | } |
2715 | | |
2716 | | int |
2717 | | _PyMonitoring_FireLineEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2718 | | int lineno) |
2719 | 0 | { |
2720 | 0 | assert(state->active); |
2721 | 0 | PyObject *lno = PyLong_FromLong(lineno); |
2722 | 0 | if (lno == NULL) { |
2723 | 0 | return -1; |
2724 | 0 | } |
2725 | 0 | PyObject *args[3] = { NULL, NULL, lno }; |
2726 | 0 | int res= capi_call_instrumentation(state, codelike, offset, args, 2, |
2727 | 0 | PY_MONITORING_EVENT_LINE); |
2728 | 0 | Py_DECREF(lno); |
2729 | 0 | return res; |
2730 | 0 | } |
2731 | | |
2732 | | int |
2733 | | _PyMonitoring_FireJumpEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2734 | | PyObject *target_offset) |
2735 | 0 | { |
2736 | 0 | assert(state->active); |
2737 | 0 | PyObject *args[4] = { NULL, NULL, NULL, target_offset }; |
2738 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2739 | 0 | PY_MONITORING_EVENT_JUMP); |
2740 | 0 | } |
2741 | | |
2742 | | int |
2743 | | _PyMonitoring_FireBranchEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2744 | | PyObject *target_offset) |
2745 | 0 | { |
2746 | 0 | assert(state->active); |
2747 | 0 | PyObject *args[4] = { NULL, NULL, NULL, target_offset }; |
2748 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2749 | 0 | PY_MONITORING_EVENT_BRANCH_RIGHT); |
2750 | 0 | } |
2751 | | |
2752 | | int |
2753 | | _PyMonitoring_FireBranchRightEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2754 | | PyObject *target_offset) |
2755 | 0 | { |
2756 | 0 | assert(state->active); |
2757 | 0 | PyObject *args[4] = { NULL, NULL, NULL, target_offset }; |
2758 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2759 | 0 | PY_MONITORING_EVENT_BRANCH_RIGHT); |
2760 | 0 | } |
2761 | | |
2762 | | int |
2763 | | _PyMonitoring_FireBranchLeftEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2764 | | PyObject *target_offset) |
2765 | 0 | { |
2766 | 0 | assert(state->active); |
2767 | 0 | PyObject *args[4] = { NULL, NULL, NULL, target_offset }; |
2768 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2769 | 0 | PY_MONITORING_EVENT_BRANCH_LEFT); |
2770 | 0 | } |
2771 | | |
2772 | | int |
2773 | | _PyMonitoring_FireCReturnEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, |
2774 | | PyObject *retval) |
2775 | 0 | { |
2776 | 0 | assert(state->active); |
2777 | 0 | PyObject *args[4] = { NULL, NULL, NULL, retval }; |
2778 | 0 | return capi_call_instrumentation(state, codelike, offset, args, 3, |
2779 | 0 | PY_MONITORING_EVENT_C_RETURN); |
2780 | 0 | } |
2781 | | |
2782 | | static inline int |
2783 | 0 | exception_event_setup(PyObject **exc, int event) { |
2784 | 0 | *exc = PyErr_GetRaisedException(); |
2785 | 0 | if (*exc == NULL) { |
2786 | 0 | PyErr_Format(PyExc_ValueError, |
2787 | 0 | "Firing event %d with no exception set", |
2788 | 0 | event); |
2789 | 0 | return -1; |
2790 | 0 | } |
2791 | 0 | return 0; |
2792 | 0 | } |
2793 | | |
2794 | | |
2795 | | static inline int |
2796 | 0 | exception_event_teardown(int err, PyObject *exc) { |
2797 | 0 | if (err == 0) { |
2798 | 0 | PyErr_SetRaisedException(exc); |
2799 | 0 | } |
2800 | 0 | else { |
2801 | 0 | assert(PyErr_Occurred()); |
2802 | 0 | Py_XDECREF(exc); |
2803 | 0 | } |
2804 | 0 | return err; |
2805 | 0 | } |
2806 | | |
2807 | | int |
2808 | | _PyMonitoring_FirePyThrowEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2809 | 0 | { |
2810 | 0 | int event = PY_MONITORING_EVENT_PY_THROW; |
2811 | 0 | assert(state->active); |
2812 | 0 | PyObject *exc; |
2813 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2814 | 0 | return -1; |
2815 | 0 | } |
2816 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2817 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2818 | 0 | return exception_event_teardown(err, exc); |
2819 | 0 | } |
2820 | | |
2821 | | int |
2822 | | _PyMonitoring_FireRaiseEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2823 | 0 | { |
2824 | 0 | int event = PY_MONITORING_EVENT_RAISE; |
2825 | 0 | assert(state->active); |
2826 | 0 | PyObject *exc; |
2827 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2828 | 0 | return -1; |
2829 | 0 | } |
2830 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2831 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2832 | 0 | return exception_event_teardown(err, exc); |
2833 | 0 | } |
2834 | | |
2835 | | int |
2836 | | _PyMonitoring_FireCRaiseEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2837 | 0 | { |
2838 | 0 | int event = PY_MONITORING_EVENT_C_RAISE; |
2839 | 0 | assert(state->active); |
2840 | 0 | PyObject *exc; |
2841 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2842 | 0 | return -1; |
2843 | 0 | } |
2844 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2845 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2846 | 0 | return exception_event_teardown(err, exc); |
2847 | 0 | } |
2848 | | |
2849 | | int |
2850 | | _PyMonitoring_FireReraiseEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2851 | 0 | { |
2852 | 0 | int event = PY_MONITORING_EVENT_RERAISE; |
2853 | 0 | assert(state->active); |
2854 | 0 | PyObject *exc; |
2855 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2856 | 0 | return -1; |
2857 | 0 | } |
2858 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2859 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2860 | 0 | return exception_event_teardown(err, exc); |
2861 | 0 | } |
2862 | | |
2863 | | int |
2864 | | _PyMonitoring_FireExceptionHandledEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2865 | 0 | { |
2866 | 0 | int event = PY_MONITORING_EVENT_EXCEPTION_HANDLED; |
2867 | 0 | assert(state->active); |
2868 | 0 | PyObject *exc; |
2869 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2870 | 0 | return -1; |
2871 | 0 | } |
2872 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2873 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2874 | 0 | return exception_event_teardown(err, exc); |
2875 | 0 | } |
2876 | | |
2877 | | int |
2878 | | _PyMonitoring_FirePyUnwindEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset) |
2879 | 0 | { |
2880 | 0 | int event = PY_MONITORING_EVENT_PY_UNWIND; |
2881 | 0 | assert(state->active); |
2882 | 0 | PyObject *exc; |
2883 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2884 | 0 | return -1; |
2885 | 0 | } |
2886 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2887 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2888 | 0 | return exception_event_teardown(err, exc); |
2889 | 0 | } |
2890 | | |
2891 | | int |
2892 | | _PyMonitoring_FireStopIterationEvent(PyMonitoringState *state, PyObject *codelike, int32_t offset, PyObject *value) |
2893 | 0 | { |
2894 | 0 | int event = PY_MONITORING_EVENT_STOP_ITERATION; |
2895 | 0 | assert(state->active); |
2896 | 0 | assert(!PyErr_Occurred()); |
2897 | 0 | PyErr_SetObject(PyExc_StopIteration, value); |
2898 | 0 | PyObject *exc; |
2899 | 0 | if (exception_event_setup(&exc, event) < 0) { |
2900 | 0 | return -1; |
2901 | 0 | } |
2902 | 0 | PyObject *args[4] = { NULL, NULL, NULL, exc }; |
2903 | 0 | int err = capi_call_instrumentation(state, codelike, offset, args, 3, event); |
2904 | 0 | Py_DECREF(exc); |
2905 | 0 | return exception_event_teardown(err, NULL); |
2906 | 0 | } |
2907 | | |
2908 | | |
2909 | | |
2910 | | /* Handle legacy BRANCH event */ |
2911 | | |
2912 | | typedef struct _PyLegacyBranchEventHandler { |
2913 | | PyObject_HEAD |
2914 | | vectorcallfunc vectorcall; |
2915 | | PyObject *handler; |
2916 | | bool right; |
2917 | | int tool_id; |
2918 | | } _PyLegacyBranchEventHandler; |
2919 | | |
2920 | 0 | #define _PyLegacyBranchEventHandler_CAST(op) ((_PyLegacyBranchEventHandler *)(op)) |
2921 | | |
2922 | | static void |
2923 | | dealloc_branch_handler(PyObject *op) |
2924 | 0 | { |
2925 | 0 | _PyLegacyBranchEventHandler *self = _PyLegacyBranchEventHandler_CAST(op); |
2926 | 0 | Py_CLEAR(self->handler); |
2927 | 0 | PyObject_Free(self); |
2928 | 0 | } |
2929 | | |
2930 | | static PyTypeObject _PyLegacyBranchEventHandler_Type = { |
2931 | | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
2932 | | "sys.monitoring.branch_event_handler", |
2933 | | sizeof(_PyLegacyBranchEventHandler), |
2934 | | .tp_dealloc = dealloc_branch_handler, |
2935 | | .tp_vectorcall_offset = offsetof(_PyLegacyBranchEventHandler, vectorcall), |
2936 | | .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | |
2937 | | Py_TPFLAGS_HAVE_VECTORCALL | Py_TPFLAGS_DISALLOW_INSTANTIATION, |
2938 | | .tp_call = PyVectorcall_Call, |
2939 | | }; |
2940 | | |
2941 | | |
2942 | | static PyObject * |
2943 | | branch_handler_vectorcall( |
2944 | | PyObject *op, PyObject *const *args, |
2945 | | size_t nargsf, PyObject *kwnames |
2946 | 0 | ) { |
2947 | 0 | _PyLegacyBranchEventHandler *self = _PyLegacyBranchEventHandler_CAST(op); |
2948 | | // Find the other instrumented instruction and remove tool |
2949 | | // The spec (PEP 669) allows spurious events after a DISABLE, |
2950 | | // so a best effort is good enough. |
2951 | 0 | assert(PyVectorcall_NARGS(nargsf) >= 3); |
2952 | 0 | PyCodeObject *code = (PyCodeObject *)args[0]; |
2953 | 0 | int src_offset = PyLong_AsLong(args[1]); |
2954 | 0 | if (PyErr_Occurred()) { |
2955 | 0 | return NULL; |
2956 | 0 | } |
2957 | 0 | _Py_CODEUNIT instr = _PyCode_CODE(code)[src_offset/2]; |
2958 | 0 | if (!is_instrumented(instr.op.code)) { |
2959 | | /* Already disabled */ |
2960 | 0 | return &_PyInstrumentation_DISABLE; |
2961 | 0 | } |
2962 | 0 | PyObject *res = PyObject_Vectorcall(self->handler, args, nargsf, kwnames); |
2963 | 0 | if (res == &_PyInstrumentation_DISABLE) { |
2964 | | /* We need FOR_ITER and POP_JUMP_ to be the same size */ |
2965 | 0 | assert(INLINE_CACHE_ENTRIES_FOR_ITER == 1); |
2966 | 0 | int offset; |
2967 | 0 | int other_event; |
2968 | 0 | if (instr.op.code == FOR_ITER) { |
2969 | 0 | if (self->right) { |
2970 | 0 | offset = src_offset/2; |
2971 | 0 | other_event = PY_MONITORING_EVENT_BRANCH_LEFT; |
2972 | 0 | } |
2973 | 0 | else { |
2974 | | // We don't know where the POP_ITER is, so |
2975 | | // we cannot de-instrument it. |
2976 | 0 | return res; |
2977 | 0 | } |
2978 | 0 | } |
2979 | 0 | else if (IS_CONDITIONAL_JUMP_OPCODE(instr.op.code)) { |
2980 | 0 | if (self->right) { |
2981 | 0 | offset = src_offset/2 + 2; |
2982 | 0 | other_event = PY_MONITORING_EVENT_BRANCH_LEFT; |
2983 | 0 | assert(_Py_GetBaseCodeUnit(code, offset).op.code == NOT_TAKEN); |
2984 | 0 | } |
2985 | 0 | else { |
2986 | 0 | offset = src_offset/2; |
2987 | 0 | other_event = PY_MONITORING_EVENT_BRANCH_RIGHT; |
2988 | 0 | } |
2989 | 0 | } |
2990 | 0 | else { |
2991 | | // Orphaned NOT_TAKEN -- Jump removed by the compiler |
2992 | 0 | return res; |
2993 | 0 | } |
2994 | 0 | LOCK_CODE(code); |
2995 | 0 | remove_tools(code, offset, other_event, 1 << self->tool_id); |
2996 | 0 | UNLOCK_CODE(); |
2997 | 0 | } |
2998 | 0 | return res; |
2999 | 0 | } |
3000 | | |
3001 | | static PyObject *make_branch_handler(int tool_id, PyObject *handler, bool right) |
3002 | 0 | { |
3003 | 0 | _PyLegacyBranchEventHandler *callback = |
3004 | 0 | PyObject_NEW(_PyLegacyBranchEventHandler, &_PyLegacyBranchEventHandler_Type); |
3005 | 0 | if (callback == NULL) { |
3006 | 0 | return NULL; |
3007 | 0 | } |
3008 | 0 | callback->vectorcall = branch_handler_vectorcall; |
3009 | 0 | callback->handler = Py_NewRef(handler); |
3010 | 0 | callback->right = right; |
3011 | 0 | callback->tool_id = tool_id; |
3012 | 0 | return (PyObject *)callback; |
3013 | 0 | } |
3014 | | |
3015 | | PyObject * |
3016 | | _PyMonitoring_RegisterCallback(int tool_id, int event_id, PyObject *obj) |
3017 | 0 | { |
3018 | 0 | assert(0 <= tool_id && tool_id < PY_MONITORING_TOOL_IDS); |
3019 | 0 | assert(0 <= event_id && event_id < _PY_MONITORING_EVENTS); |
3020 | 0 | PyObject *res; |
3021 | 0 | if (event_id == PY_MONITORING_EVENT_BRANCH) { |
3022 | 0 | PyObject *left, *right; |
3023 | 0 | if (obj == NULL) { |
3024 | 0 | left = NULL; |
3025 | 0 | right = NULL; |
3026 | 0 | } |
3027 | 0 | else { |
3028 | 0 | right = make_branch_handler(tool_id, obj, true); |
3029 | 0 | if (right == NULL) { |
3030 | 0 | return NULL; |
3031 | 0 | } |
3032 | 0 | left = make_branch_handler(tool_id, obj, false); |
3033 | 0 | if (left == NULL) { |
3034 | 0 | Py_DECREF(right); |
3035 | 0 | return NULL; |
3036 | 0 | } |
3037 | 0 | } |
3038 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
3039 | 0 | _PyEval_StopTheWorld(interp); |
3040 | 0 | PyObject *old_right = interp->monitoring_callables[tool_id][PY_MONITORING_EVENT_BRANCH_RIGHT]; |
3041 | 0 | interp->monitoring_callables[tool_id][PY_MONITORING_EVENT_BRANCH_RIGHT] = right; |
3042 | 0 | res = interp->monitoring_callables[tool_id][PY_MONITORING_EVENT_BRANCH_LEFT]; |
3043 | 0 | interp->monitoring_callables[tool_id][PY_MONITORING_EVENT_BRANCH_LEFT] = left; |
3044 | 0 | _PyEval_StartTheWorld(interp); |
3045 | 0 | Py_XDECREF(old_right); |
3046 | 0 | } |
3047 | 0 | else { |
3048 | 0 | PyInterpreterState *interp = _PyInterpreterState_GET(); |
3049 | 0 | _PyEval_StopTheWorld(interp); |
3050 | 0 | res = interp->monitoring_callables[tool_id][event_id]; |
3051 | 0 | interp->monitoring_callables[tool_id][event_id] = Py_XNewRef(obj); |
3052 | 0 | _PyEval_StartTheWorld(interp); |
3053 | 0 | } |
3054 | 0 | if (res != NULL && Py_TYPE(res) == &_PyLegacyBranchEventHandler_Type) { |
3055 | 0 | _PyLegacyBranchEventHandler *wrapper = (_PyLegacyBranchEventHandler *)res; |
3056 | 0 | res = Py_NewRef(wrapper->handler); |
3057 | 0 | Py_DECREF(wrapper); |
3058 | 0 | } |
3059 | 0 | return res; |
3060 | 0 | } |
3061 | | |
3062 | | /* Branch Iterator */ |
3063 | | |
3064 | | typedef struct { |
3065 | | PyObject_HEAD |
3066 | | PyCodeObject *bi_code; |
3067 | | int bi_offset; |
3068 | | } branchesiterator; |
3069 | | |
3070 | 0 | #define branchesiterator_CAST(op) ((branchesiterator *)(op)) |
3071 | | |
3072 | | static PyObject * |
3073 | 0 | int_triple(int a, int b, int c) { |
3074 | 0 | PyObject *obja = PyLong_FromLong(a); |
3075 | 0 | PyObject *objb = NULL; |
3076 | 0 | PyObject *objc = NULL; |
3077 | 0 | if (obja == NULL) { |
3078 | 0 | goto error; |
3079 | 0 | } |
3080 | 0 | objb = PyLong_FromLong(b); |
3081 | 0 | if (objb == NULL) { |
3082 | 0 | goto error; |
3083 | 0 | } |
3084 | 0 | objc = PyLong_FromLong(c); |
3085 | 0 | if (objc == NULL) { |
3086 | 0 | goto error; |
3087 | 0 | } |
3088 | 0 | PyObject *array[3] = { obja, objb, objc }; |
3089 | 0 | return _PyTuple_FromArraySteal(array, 3); |
3090 | 0 | error: |
3091 | 0 | Py_XDECREF(obja); |
3092 | 0 | Py_XDECREF(objb); |
3093 | 0 | Py_XDECREF(objc); |
3094 | 0 | return NULL; |
3095 | 0 | } |
3096 | | |
3097 | | static PyObject * |
3098 | | branchesiter_next(PyObject *op) |
3099 | 0 | { |
3100 | 0 | branchesiterator *bi = branchesiterator_CAST(op); |
3101 | 0 | int offset = bi->bi_offset; |
3102 | 0 | int oparg = 0; |
3103 | 0 | while (offset < Py_SIZE(bi->bi_code)) { |
3104 | 0 | _Py_CODEUNIT inst = _Py_GetBaseCodeUnit(bi->bi_code, offset); |
3105 | 0 | int next_offset = offset + 1 + _PyOpcode_Caches[inst.op.code]; |
3106 | 0 | switch(inst.op.code) { |
3107 | 0 | case EXTENDED_ARG: |
3108 | 0 | oparg = (oparg << 8) | inst.op.arg; |
3109 | 0 | break; |
3110 | 0 | case FOR_ITER: |
3111 | 0 | oparg = (oparg << 8) | inst.op.arg; |
3112 | 0 | bi->bi_offset = next_offset; |
3113 | 0 | int target = next_offset + oparg+2; // Skips END_FOR and POP_ITER |
3114 | 0 | return int_triple(offset*2, next_offset*2, target*2); |
3115 | 0 | case POP_JUMP_IF_FALSE: |
3116 | 0 | case POP_JUMP_IF_TRUE: |
3117 | 0 | case POP_JUMP_IF_NONE: |
3118 | 0 | case POP_JUMP_IF_NOT_NONE: |
3119 | 0 | oparg = (oparg << 8) | inst.op.arg; |
3120 | | /* Skip NOT_TAKEN */ |
3121 | 0 | int not_taken = next_offset + 1; |
3122 | 0 | bi->bi_offset = not_taken; |
3123 | 0 | return int_triple(offset*2, not_taken*2, (next_offset + oparg)*2); |
3124 | 0 | case END_ASYNC_FOR: |
3125 | 0 | oparg = (oparg << 8) | inst.op.arg; |
3126 | 0 | int src_offset = next_offset - oparg; |
3127 | 0 | bi->bi_offset = next_offset; |
3128 | 0 | assert(_Py_GetBaseCodeUnit(bi->bi_code, src_offset).op.code == END_SEND); |
3129 | 0 | assert(_Py_GetBaseCodeUnit(bi->bi_code, src_offset+1).op.code == NOT_TAKEN); |
3130 | 0 | not_taken = src_offset + 2; |
3131 | 0 | return int_triple(src_offset *2, not_taken*2, next_offset*2); |
3132 | 0 | default: |
3133 | 0 | oparg = 0; |
3134 | 0 | } |
3135 | 0 | offset = next_offset; |
3136 | 0 | } |
3137 | 0 | return NULL; |
3138 | 0 | } |
3139 | | |
3140 | | static void |
3141 | | branchesiter_dealloc(PyObject *op) |
3142 | 0 | { |
3143 | 0 | branchesiterator *bi = branchesiterator_CAST(op); |
3144 | 0 | Py_DECREF(bi->bi_code); |
3145 | 0 | PyObject_Free(bi); |
3146 | 0 | } |
3147 | | |
3148 | | static PyTypeObject _PyBranchesIterator = { |
3149 | | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
3150 | | "line_iterator", /* tp_name */ |
3151 | | sizeof(branchesiterator), /* tp_basicsize */ |
3152 | | 0, /* tp_itemsize */ |
3153 | | /* methods */ |
3154 | | .tp_dealloc = branchesiter_dealloc, |
3155 | | .tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, |
3156 | | .tp_iter = PyObject_SelfIter, |
3157 | | .tp_iternext = branchesiter_next, |
3158 | | .tp_free = PyObject_Del, |
3159 | | }; |
3160 | | |
3161 | | PyObject * |
3162 | | _PyInstrumentation_BranchesIterator(PyCodeObject *code) |
3163 | 0 | { |
3164 | |
|
3165 | 0 | branchesiterator *bi = (branchesiterator *)PyType_GenericAlloc(&_PyBranchesIterator, 0); |
3166 | 0 | if (bi == NULL) { |
3167 | 0 | return NULL; |
3168 | 0 | } |
3169 | 0 | bi->bi_code = (PyCodeObject*)Py_NewRef(code); |
3170 | 0 | bi->bi_offset = 0; |
3171 | 0 | return (PyObject *)bi; |
3172 | 0 | } |