SingleAccretion
SingleAccretion
What is the memory regression (especially for MinOpts)? Edit: heh, seems like we've commented in parallel \:). Edit: I did some measurements with x64 CoreLib: ``` Regression with optimizations enabled:...
> @SingleAccretion I notice your test https://github.com/dotnet/runtime/issues/64375#issuecomment-1023234701 doesn't fail in .NET 6, but Egor's test https://github.com/dotnet/runtime/issues/64375#issuecomment-1023199708 does. Did we port anything that would fix one but not the other to...
I am also hitting this exact issue. `MSBuildLocator.RegisterInstance(instance)` where is `instance` a .NET Core SDK fails to load the relevant assemblies. The workaround is quite simple (load them manually), but...
Obligatory mention of the verbose syntax: ```C# public not default int ReadonlyIsALongWordButItIsSomewhatClearWhatItMeans { get; init; } ``` I do not like it, actually, since it tells me something about the...
I have run into this issue (along with another, much simpler one) and investigated the cause a bit. This is not a bug in the DWARF-related code, since the instruction...
@cfallin thank you for a quick response! Yes, I am looking at this right now. The branching logic (if I am reading it correctly) only ever edits the instruction stream...
If this is with the 'vanilla' clang from WASI SDK (it looks to be like that from the logs), this may be https://github.com/WebAssembly/wasi-sdk/issues/326.
I have tried the simple C code above the issue and the issue no longer reproduces. However, I have a larger example (not yet in C/C++) that does show bad...
I think I see what is going here quite clearly now. During DWARF translation, actual as-reported-by-the-code-generator live ranges of "value labels" (side note: quite the confusing name for what are...
With the migration of .NET to WASI P2, we are now hitting this lack of support for exit codes problem (same context as https://github.com/bytecodealliance/wasmtime/issues/6352). It looks like a significant API...