gh-131798: JIT: Narrow the return type of _CALL_LEN to int (#132940)

Reduce unnecessary guards whenever `len()` is called and used
after.

Co-authored-by: Max Bernstein <tekknolagi@gmail.com>
This commit is contained in:
Diego Russo
2025-04-25 19:57:42 +01:00
committed by GitHub
parent f0485de43a
commit 4c20f46fa0
4 changed files with 18 additions and 1 deletions

View File

@@ -2014,7 +2014,7 @@
case _CALL_LEN: {
JitOptSymbol *res;
res = sym_new_not_null(ctx);
res = sym_new_type(ctx, &PyLong_Type);
stack_pointer[-2 - oparg] = res;
stack_pointer += -1 - oparg;
assert(WITHIN_STACK_BOUNDS());