1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00

Fix mentioned default value of DOTNET_TC_OnStackReplacement_InitialCounter (#74729)

This commit is contained in:
Stephen Toub 2022-08-29 07:13:08 -04:00 committed by GitHub
parent 8c4e6e2aba
commit 11f65fd724
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -172,7 +172,7 @@ During the patchpoint phase, if any block was marked, the jit adds a
new integer local to the method (the patchpoint counter) and adds IR
to initialize the counter on method entry to the value of
`DOTNET_TC_OnStackReplacement_InitialCounter` (by default this is
0x1000).
1000).
At each marked block the JIT adds code to decrement the counter and
conditionally invoke `CORINFO_HELP_PATCHPOINT` if the counter value is zero
@ -492,4 +492,4 @@ In the performance repo configurations we reduce the number of warmup iterations
## References
* [OSR Design Document](https://github.com/dotnet/runtime/blob/main/docs/design/features/OnStackReplacement.md). May be a bit dated in places.
* [OSR Next Steps Issue](https://github.com/dotnet/runtime/issues/33658). Has a lot of information on issues encountered during bring-up, current limitations, and ideas for things we might revisit.
* [OSR Next Steps Issue](https://github.com/dotnet/runtime/issues/33658). Has a lot of information on issues encountered during bring-up, current limitations, and ideas for things we might revisit.