File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ getLocationInfo(
133
133
tlbc_entries + sizeof (tlbc_size),
134
134
tlbc_size * sizeof (uintptr_t ),
135
135
vec.data ());
136
+ LOG (DEBUG) << " tlbc_index=" << tlbc_index << " tlbc_size=" << tlbc_size;
136
137
uintptr_t code_adaptive_actual = vec[tlbc_index];
137
138
ptrdiff_t addrq =
138
139
(reinterpret_cast <uint16_t *>(last_instruction_index)
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ FrameObject::FrameObject(
29
29
if (d_is_shim) {
30
30
LOG (DEBUG) << " Skipping over a shim frame inserted by the interpreter" ;
31
31
next_frame_no = frame_no;
32
+ } else {
33
+ d_code = getCode (manager, frame);
32
34
}
33
35
34
- d_code = getCode (manager, frame);
35
-
36
36
auto prev_addr = frame.getField (&py_frame_v::o_back);
37
37
LOG (DEBUG) << std::hex << std::showbase << " Previous frame address: " << prev_addr;
38
38
if (prev_addr) {
You can’t perform that action at this time.
0 commit comments