-
AppInsights query:
```Kusto
exceptions
| where type == 'System.ArgumentOutOfRangeException'
| where method == 'SharpLab.Server.Decompilation.JitAsmDecompiler.DisassembleAndWriteSimpleMethod'
```
-
This code does not seem to work on a dotnet project out of the box.
```
using DataTarget dataTarget = DataTarget.AttachToProcess(Process.GetCurrentProcess().Id, true);
```
Fails with
```
Unhan…
-
Criteo has been doing some great stuff with CLRMD over the years and it would be nice if they and others could use their analysis tools with dotnet dump. Initial scope would just be the ability for a …
-
I've [ported](https://github.com/dotnet/BenchmarkDotNet/pull/2040) BenchmarkDotNet from ClrMd v1 to v2 hoping that it's going to give us macOS support (https://github.com/dotnet/BenchmarkDotNet/issues…
-
Are there any plans for adding Windows arm64 support?
Currently I can't attach to an arm64 process on Windows due to missing DAC.
Context: we have recently implemented an arm64 disassembler for …
-
While reviewing some of the stale PRs I’ve noticed that we are frequently discussing the tradeoff between improving CPU time at the cost of increased code size. Example: https://github.com/dotnet/runt…
-
Notably, the graph traversal algorithms can be parallelized (especially the BFS-like ones) by having multiple threads pull from a queue of objects to traverse. Possibly the heap index building can be …
-
I have two chunks of code, running from the same snapshot.
` var clrRoots = runTime.Heap.EnumerateRoots();
foreach (IClrRoot root in clrRoots)
{ /* …
-
**Summary**
When executing through VisualStudio, having access to local variables can be invaluable for debugging exceptions.
It would be great if there was a way to also make this information avail…
-
A few suggestions for labels in ASM, which I think may improve end user experience:
1. Emit used labels only: label for each instruction is noisy. We are using look-ahead buffer in emitter. It woul…