yowl
yowl
Happy to help with any bugs that are found in the compiler. At the risk of repeating myself, I just want to point out for the benefit of newcomers, the...
I dont know how much help this is but from the Err tool: ``` E:\GitHub\runtimelab2>e:\Err_6.4.5.exe 80190193 # No results found for hex 0x4c79af1 / decimal 80190193 # for hex 0x80190193...
Also trying to set this up. When the SignService starts it popups an authentication windows, where I authenticate myself and it fails saying ``` AADSTS50011: The reply URL specified in...
yes , lots e.g. ``` [WebInvoke] public List UpdateGrades(List actions) { ```
The windows instructions probably still stand. I never got the linux build going. On the plus side we have some support for the RyuJit optimisations which will help keep the...
Ok, but I'd have to add the methods to `LLVMTargetDataRef` anyway so what is the wrapper giving, e.g. in `LLVMTargetDataRef` ``` public ulong OffsetOfElement(LLVMTypeRef type, uint element) { return LLVM.OffsetOfElement(this,...
I could create a ILCompiler.LLVM basically pulling out the LLVM target quadruple and layout to parameters. The shadow stack and parameter passing which exist due to Wasm stack scanning limitations,...
Yes, can do. Does it qualify for a branch name of `feature/NativeAOT-LLVM` ? Do I branch it from `dotnet/runtimelab:runtime-master ` and then merge in `feature/NativeAOT` or branch directly from `feature/NativeAOT`...
Thanks, I think I'll still need to track allocations due to the alignment requirement. The address returned out of `VirtualReserve` is not the same as the address from `malloc` but...
"VirtualRelease never release less than VirtualReserve" That helps in the tracking for space, but still need to go from the aligned address to the `malloc` block