mirror of
https://github.com/python/cpython.git
synced 2026-02-27 01:21:01 +00:00
gh-134584: JIT: Remove redundant refcount from STORE_FAST (GH-143336)
This commit is contained in:
parent
98258326a9
commit
f7a03bb944
10 changed files with 954 additions and 293 deletions
|
|
@ -109,8 +109,10 @@ dummy_func(void) {
|
|||
o = owner;
|
||||
}
|
||||
|
||||
op(_STORE_FAST, (value --)) {
|
||||
op(_SWAP_FAST, (value -- trash)) {
|
||||
JitOptRef tmp = GETLOCAL(oparg);
|
||||
GETLOCAL(oparg) = value;
|
||||
trash = tmp;
|
||||
}
|
||||
|
||||
op(_STORE_SUBSCR_LIST_INT, (value, list_st, sub_st -- ls, ss)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue