Home
last modified time | relevance | path

Searched refs:instr_ub (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Objects/
Dlnotab_notes.txt63 *instr_lb <= frame->f_lasti < *instr_ub
66 the first bytecode index of the current line, and *instr_ub holds the first
71 the compiler inserted the same line twice. Even in that case, *instr_ub holds
/external/python/cpython3/Objects/
Dlnotab_notes.txt72 *instr_lb <= frame->f_lasti < *instr_ub
75 the first bytecode index of the current line, and *instr_ub holds the first
80 the compiler inserted the same line twice. Even in that case, *instr_ub holds
/external/python/cpython3/Python/
Dceval.c942 int instr_ub = -1, instr_lb = 0, instr_prev = -1; in _PyEval_EvalFrameDefault() local
1411 maybe_dtrace_line(f, &instr_lb, &instr_ub, &instr_prev); in _PyEval_EvalFrameDefault()
1425 &instr_lb, &instr_ub, &instr_prev); in _PyEval_EvalFrameDefault()
3795 … int needs_new_execution_window = (f->f_lasti < instr_lb || f->f_lasti >= instr_ub); in _PyEval_EvalFrameDefault()
4700 int *instr_lb, int *instr_ub, int *instr_prev) in maybe_call_line_trace() argument
4708 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_call_line_trace()
4713 *instr_ub = bounds.ap_upper; in maybe_call_line_trace()
5647 int *instr_lb, int *instr_ub, int *instr_prev) in maybe_dtrace_line() argument
5655 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_dtrace_line()
5660 *instr_ub = bounds.ap_upper; in maybe_dtrace_line()
/external/python/cpython2/Python/
Dceval.c820 int instr_ub = -1, instr_lb = 0, instr_prev = -1; in PyEval_EvalFrameEx() local
1159 f, &instr_lb, &instr_ub, in PyEval_EvalFrameEx()
4071 PyFrameObject *frame, int *instr_lb, int *instr_ub, in maybe_call_line_trace() argument
4080 if (frame->f_lasti < *instr_lb || frame->f_lasti >= *instr_ub) { in maybe_call_line_trace()
4085 *instr_ub = bounds.ap_upper; in maybe_call_line_trace()