Open
Description
Processing dotnet/runtime#111636 (comment) command:
Command
-linux_azure_cobalt100 -linux_azure_ampere -profiler
using BenchmarkDotNet.Attributes;
public class MyBench
{
object Dst1;
object Dst2;
object Dst3;
object Dst4;
static object Value = new();
[Benchmark]
public void WB_nonephemeral()
{
// Write non-ephemeral reference
Dst1 = Value;
Dst2 = Value;
Dst3 = Value;
Dst4 = Value;
}
[Benchmark]
public void WB_ephemeral()
{
// Write non-ephemeral reference
Dst1 = new object();
}
}
(EgorBot will reply in this issue)
Metadata
Metadata
Assignees
Labels
No labels