Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
GH-98894: Fixfunction__return
andfunction__entry
dTrace probe missing afterGH-103083
#125019
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Changes fromall commits
f11b7c4
ac683c0
b4d457f
4810510
128e856
e98e3a2
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix ``function__return`` and ``function__entry`` dtrace probe missing after :gh:`103083`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1078,6 +1078,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int | ||
#endif | ||
/* Because this avoids the RESUME, we need to update instrumentation */ | ||
_Py_Instrument(_PyFrame_GetCode(frame), tstate->interp); | ||
DTRACE_FUNCTION_ENTRY(); | ||
next_instr = frame->instr_ptr; | ||
monitor_throw(tstate, frame, next_instr); | ||
stack_pointer = _PyFrame_GetStackPointer(frame); | ||
@@ -1097,6 +1098,8 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int | ||
_PyExecutorObject *current_executor = NULL; | ||
const _PyUOpInstruction *next_uop = NULL; | ||
#endif | ||
DTRACE_FUNCTION_ENTRY(); | ||
#if Py_TAIL_CALL_INTERP | ||
# if Py_STATS | ||
return _TAIL_CALL_start_frame(frame, NULL, tstate, NULL, 0, lastopcode); | ||
@@ -3279,6 +3282,37 @@ PyUnstable_Eval_RequestCodeExtraIndex(freefunc free) | ||
return new_index; | ||
} | ||
static void | ||
dtrace_function_entry(_PyInterpreterFrame *frame) | ||
{ | ||
const char *filename; | ||
const char *funcname; | ||
int lineno; | ||
PyCodeObject *code = _PyFrame_GetCode(frame); | ||
filename = PyUnicode_AsUTF8(code->co_filename); | ||
funcname = PyUnicode_AsUTF8(code->co_name); | ||
lineno = PyUnstable_InterpreterFrame_GetLine(frame); | ||
PyDTrace_FUNCTION_ENTRY(filename, funcname, lineno); | ||
picnixz marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
static void | ||
dtrace_function_return(_PyInterpreterFrame *frame) | ||
{ | ||
const char *filename; | ||
const char *funcname; | ||
int lineno; | ||
PyCodeObject *code = _PyFrame_GetCode(frame); | ||
filename = PyUnicode_AsUTF8(code->co_filename); | ||
funcname = PyUnicode_AsUTF8(code->co_name); | ||
lineno = PyUnstable_InterpreterFrame_GetLine(frame); | ||
PyDTrace_FUNCTION_RETURN(filename, funcname, lineno); | ||
picnixz marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
/* Implement Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() as functions | ||
for the limited API. */ | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.