GH-126910: Add GNU backtrace support for unwinding JIT frames (#149104)

Co-authored-by: Pablo Galindo Salgado <pablogsal@gmail.com>
This commit is contained in:
Diego Russo 2026-05-05 09:29:07 +01:00 committed by GitHub
parent ddfdf9b8df
commit 1e5d94274d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 522 additions and 67 deletions

View file

@ -1449,7 +1449,7 @@ allocate_executor(int exit_count, int length)
res->trace = (_PyUOpInstruction *)(res->exits + exit_count);
res->code_size = length;
res->exit_count = exit_count;
res->jit_gdb_handle = NULL;
res->jit_registration = NULL;
return res;
}