Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for System.UIntPtr #547

Merged
merged 3 commits into from
Jan 3, 2021
Merged

Add support for System.UIntPtr #547

merged 3 commits into from
Jan 3, 2021

Commits on Jan 3, 2021

  1. Configuration menu
    Copy the full SHA
    dfea6bb View commit details
    Browse the repository at this point in the history
  2. Add support for UIntPtr out / default return values

    DynamicProxy will now produce the same IL sequences for `UIntPtr` as it
    already does for `IntPtr`:
    
     * For default return values:
    
           ldloca.s <n>
           initobj [mscorlib]System.UIntPtr
           ldloc.<n>
           ret
    
     * For out parameters:
    
           ldarg.<n>
           initobj [mscorlib]System.UIntPtr
    
    (For comparison, the C# compiler wouldn't emit `initobj`, but instead
    `ldc.i4.0` followed by `conv.i`.)
    stakx committed Jan 3, 2021
    Configuration menu
    Copy the full SHA
    ecfff7a View commit details
    Browse the repository at this point in the history
  3. Update changelog

    stakx committed Jan 3, 2021
    Configuration menu
    Copy the full SHA
    adcc3dd View commit details
    Browse the repository at this point in the history