-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize multicast delegate thunk (#104222)
Alternative to #104219 for consideration. RyuJIT generates somewhat better code for the canonical `Invoke` pattern: The other PR: ``` 00007FF7AE041978 mov rcx,qword ptr [rbx+rbp*8+10h] 00007FF7AE04197D mov rax,qword ptr [rcx+8] 00007FF7AE041981 mov rdx,qword ptr [rcx+20h] 00007FF7AE041985 mov rcx,rax 00007FF7AE041988 call rdx ``` This PR: ``` 00007FF69D2B1978 mov rax,qword ptr [rbx+rbp*8+10h] 00007FF69D2B197D mov rcx,qword ptr [rax+8] 00007FF69D2B1981 call qword ptr [rax+20h] ```
- Loading branch information
1 parent
91d656d
commit 3807493
Showing
2 changed files
with
18 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters