1
0
mirror of https://github.com/chylex/.NET-Community-Toolkit.git synced 2024-09-21 12:42:50 +02:00
Commit Graph

1970 Commits

Author SHA1 Message Date
msftbot[bot]
eeaddbbf8d Loop codegen improvements (#3632)
## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

- Optimization
<!-- - Bugfix -->
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
Some `for` loops have unoptimal codegen involving the indexing at each iteration.

For instance, as a very simple test, this method simply sets all items in an input `Span<int>` to `0`:

```csharp
public static void M1(Span<int> span)
{
    ref int r0 = ref MemoryMarshal.GetReference(span);
    int length = span.Length;

    for (int i = 0; i < length; i++)
    {
        Unsafe.Add(ref r0, i) = 0;
    }
}
```
```asm
C.M1(System.Span`1<Int32>)
    L0000: mov rax, [rcx]
    L0003: mov edx, [rcx+8]
    L0006: xor ecx, ecx
    L0008: test edx, edx
    L000a: jle short L001c
    L000c: movsxd r8, ecx
    L000f: xor r9d, r9d
    L0012: mov [rax+r8*4], r9d
    L0016: inc ecx
    L0018: cmp ecx, edx
    L001a: jl short L000c
    L001c: ret
```

Here the loop starts at `L000c`, and at every iteration it takes the loop counter, extends it to native int, then uses it to index from the initial reference (that `[rax+r8*4]` offset calculation), and then writes to it. This is unnecessary logic, in cases such as this.

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
Refactored some loops to operate within a target address range, with all indexing out of the loop body.

```csharp
public static void M2(Span<int> span)
{
    ref int r0 = ref MemoryMarshal.GetReference(span);
    ref int r1 = ref Unsafe.Add(ref r0, span.Length);

    while (Unsafe.IsAddressLessThan(ref r0, ref r1))
    {
        r0 = 0;

        r0 = ref Unsafe.Add(ref r0, 1);
    }
}
```
```asm
C.M2(System.Span`1<Int32>)
    L0000: mov rax, [rcx]
    L0003: mov edx, [rcx+8]
    L0006: movsxd rdx, edx
    L0009: lea rdx, [rax+rdx*4]
    L000d: cmp rax, rdx
    L0010: jae short L001f
    L0012: xor ecx, ecx
    L0014: mov [rax], ecx
    L0016: add rax, 4
    L001a: cmp rax, rdx
    L001d: jb short L0012
    L001f: ret
```

Here instead we pre-calculate the target address just once, outside the loop, and then just iterate until the initial, moving reference reaches that point. This allows the actual loop to be more compact and with no indexing logic needed. We just read directly from the moving reference, and then increment it by a fixed amount at the end of each iteration. Not groundbreaking, but better 🚀

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] ~~Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->~~
- [ ] ~~Sample in sample app has been added / updated (for bug fixes / features)~~
    - [ ] ~~Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)~~
- [X] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes
2021-01-13 22:50:25 +00:00
Ratish Philip
7495dba54d Merge branch 'master' into feature/win2dparser 2020-12-16 11:22:25 -08:00
Ratish Philip
49eaecde7b Merge branch 'feature/win2dparser' of https://github.com/ratishphilip/WindowsCommunityToolkit into feature/win2dparser 2020-12-16 11:00:50 -08:00
Ratish Philip
f09557dd17 Added unit test cases for Geometry Helpers. 2020-12-16 11:00:18 -08:00
Sergio Pedri
ab99ffc93f Codegen tweaks in [ReadOnly]Span2D<T> types 2020-12-16 00:31:45 +01:00
Sergio Pedri
8607971c47 Codegen tweaks to ParallelHelper 2020-12-16 00:31:30 +01:00
Sergio Pedri
87d0b45f51 Revert "Minor code tweaks" to fix .NET Native error
This reverts commit f286447fe3 to work around a .NET Native compiler bug causing a crash. See more details in https://github.com/windows-toolkit/WindowsCommunityToolkit/pull/3573#issuecomment-742131056.
2020-12-10 01:24:07 +01:00
Sergio Pedri
2665e8e9d3 Decoupled Guard helpers from ThrowHelper class 2020-12-09 23:54:42 +01:00
Sergio Pedri
9bec8362bb Minor code refactoring for new class structure 2020-12-09 23:54:41 +01:00
Sergio Pedri
39e338632e Renamed files to match new class structure 2020-12-09 23:54:41 +01:00
Sergio Pedri
1b52768de7 Improved Guard APIs codegen 2020-12-09 23:54:41 +01:00
Sergio Pedri
df28b20038 Added Guard.IsCloseTo overloads for nint type 2020-12-09 23:54:41 +01:00
Sergio Pedri
b84e9b7d97 Codegen improvements to Guard.IsCloseTo 2020-12-09 23:54:41 +01:00
Sergio Pedri
e88a7f5c0b Improved IsCloseTo unit tests 2020-12-09 23:54:41 +01:00
Sergio Pedri
22f842faed Refactored Guard.IsCloseTo unit tests 2020-12-09 23:54:41 +01:00
Sergio Pedri
d43b63c95e Added nint/nuint comparable Guard overloads 2020-12-09 23:54:41 +01:00
Sergio Pedri
f286447fe3 Minor code tweaks 2020-12-09 23:54:41 +01:00
msftbot[bot]
0bb94f5a7f Improved RuntimeHelpers.ConvertLength codegen (#3608)
<!-- 🚨 Please Do Not skip any instructions and information mentioned below as they are all required and essential to evaluate and test the PR. By fulfilling all the required information you will be able to reduce the volume of questions and most likely help merge the PR faster 🚨 -->

<!-- 📝 It is preferred if you keep the "☑️ Allow edits by maintainers" checked in the Pull Request Template as it increases collaboration with the Toolkit maintainers by permitting commits to your PR branch (only) created from your fork.  This can let us quickly make fixes for minor typos or forgotten StyleCop issues during review without needing to wait on you doing extra work. Let us help you help us! 🎉 -->


## Follow up from #3520 
<!-- Add the relevant issue number after the "#" mentioned above (for ex: Fixes #1234) which will automatically close the issue once the PR is merged. -->

<!-- Add a brief overview here of the feature/bug & fix. -->

## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

- Optimization
<!-- - Bugfix -->
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
The codegen for the second branch in `RuntimeHelpers.ConvertLength` does a signed division:

9b75c9f910/Microsoft.Toolkit.HighPerformance/Helpers/Internals/RuntimeHelpers.cs (L43-L46)

This is not the best for the codegen, as the JIT has to handle the sign in that division, resulting in the following:

```asm
; [System.Byte, System.Private.CoreLib],[System.Numerics.Vector4, System.Numerics.Vectors]
ConvertLength[TFrom, TTo](Int32)
    L0000: mov eax, ecx
    L0002: sar eax, 0x1f
    L0005: and eax, 0xf
    L0008: add eax, ecx
    L000a: sar eax, 4
    L000d: ret
```

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
Avoided that with a cast to `uint`, since the length is guaranteed to be a positive value in `[0, int.MaxValue]` anyway:

```asm
; [System.Byte, System.Private.CoreLib],[System.Numerics.Vector4, System.Numerics.Vectors]
    L0000: mov eax, ecx
    L0002: shr eax, 4
    L0005: ret
```

Perfect! 😄🎉

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] ~~Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->~~
- [ ] ~~Sample in sample app has been added / updated (for bug fixes / features)~~
    - [ ] ~~Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)~~
- [X] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes
2020-12-08 16:28:04 +00:00
Sergio Pedri
210fababa4 Improved RuntimeHelpers.ConvertLength codegen 2020-12-06 01:20:59 +01:00
msftbot[bot]
91157c65cd .NET 5 target for Toolkit and HighPerformance packages (#3356)
## Adds the .NET 5 target to `Microsoft.Toolkit.HighPerformance`

## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

<!-- - Bugfix -->
 - Feature
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
The `Microsoft.Toolkit.HighPerformance` package maxes out at .NET Core 3.1.
The `Microsoft.Toolkit` package maxes out at .NET Standard 2.1.

Additionally, `Microsoft.Toolkit` doesn't have proper nullability annotations, and it reports installing additional dependencies if installed in a .NET 5 apps. The extra dependency is `System.Runtime.CompilerServices.Unsafe` which is actually built-in on .NET 5, but consumers not aware of this would still see the installation prompt from NuGet as reporting an extra indirect dependency.

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
 Added .NET 5 target to `Microsoft.Toolkit.HighPerformance`
 Added .NET 5 target to `Microsoft.Toolkit`
 Enabled global nullability annotations to `Microsoft.Toolkit` and improved the codebase.
 Enabled C# 9 in both projects, with some extra code tweaks.

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->
- [ ] Sample in sample app has been added / updated (for bug fixes / features)
    - [ ] Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)
- [ ] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes

<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. 
     Please note that breaking changes are likely to be rejected. -->
2020-11-24 22:34:04 +00:00
Sergio Pedri
ec071adbf0 Fixed a small bug, minor code tweaks 2020-11-23 12:32:13 +01:00
Sergio Pedri
01aa6f0dfe Removed nullability warning suppressions 2020-11-23 00:30:15 +01:00
Sergio Pedri
88ae057bae Code refactoring, improved nullability annotations 2020-11-23 00:28:39 +01:00
Sergio Pedri
b8c73457a2 Minor code style tweaks 2020-11-23 00:17:46 +01:00
Sergio Pedri
31f5906a76 Removed unnecessary nullability attribute 2020-11-23 00:16:02 +01:00
Sergio Pedri
d27bb82af1 Removed unused attribute 2020-11-23 00:10:45 +01:00
Sergio Pedri
574dfb4dfb Fixed nullability annotations in Microsoft.Toolkit 2020-11-23 00:08:31 +01:00
Sergio Pedri
e7012b9ce4 Minor code style tweaks 2020-11-22 18:15:26 +01:00
Sergio Pedri
ae783a1df9 Minor code tweak to ToHexString 2020-11-22 18:13:11 +01:00
Sergio Pedri
31a63b53fc Added .NET 5 target to Microsoft.Toolkit package 2020-11-22 18:00:22 +01:00
Sergio Pedri
3990071643 Aligned ThrowHelper nullability annotations to .NET 5 2020-11-22 17:13:39 +01:00
Sergio Pedri
2d961728e1 Enabled missing fast code paths on .NET 5 2020-11-21 02:33:13 +01:00
Sergio Pedri
3635ed2899 Minor code quality improvements 2020-11-21 02:13:01 +01:00
Sergio Pedri
9e495214bb Minor code style tweaks 2020-11-21 02:02:45 +01:00
Sergio Pedri
fd2ed709fb Suppressed compiler warnings 2020-11-21 02:00:22 +01:00
h82258652
886a0278b3 Merge branch 'master' into lazyLoadingThreshold 2020-11-21 08:50:28 +08:00
Sergio Pedri
847941c4f1 Fixed incorrect visibility of some throw helpers 2020-11-21 01:49:28 +01:00
Sergio Pedri
82f16833a7 Removed unnecessary using directive 2020-11-21 01:49:07 +01:00
Sergio Pedri
7decbfbd73 Merge branch 'master' into feature/net-5-target 2020-11-21 01:38:50 +01:00
msftbot[bot]
da85391ed1 Performance improvement in Count<T> extension (#3548)
## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

- Performance improvement
<!-- - Bugfix -->
<!-- - Feature -->
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
About 20% improvement on .NET 5 when working on `char` types (or larger):

![image](https://user-images.githubusercontent.com/10199417/97509236-ff526e80-1981-11eb-8a90-f8aa72f1551e.png)

This was done by adding an unrolled loop for the vectorized path of the SIMD accelerated version of `Count<T>`.

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] ~~Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->~~
- [ ] ~~Sample in sample app has been added / updated (for bug fixes / features)~~
    - [ ] ~~Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)~~
- [X] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes
2020-11-21 00:19:38 +00:00
Sergio Pedri
ef8976b3dc Fixed missing NET 5 path in BitOperations 2020-11-21 00:19:07 +01:00
Sergio Pedri
69834369a4 Fixed missing compiler directive in unit tests 2020-11-21 00:17:04 +01:00
Sergio Pedri
5280602178 Merge branch 'master' into feature/net-5-target 2020-11-21 00:15:09 +01:00
Michael Hawker MSFT (XAML Llama)
d774c2724f Merge branch 'master' into performance/unrolled-count 2020-11-20 15:12:05 -08:00
msftbot[bot]
41b73b3aa9 New IBufferWriter<byte>.AsStream() extension (#3522)
## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

<!-- - Bugfix -->
- Feature
<!-- - Code style update (formatting) -->
<!-- - Refactoring (no functional changes, no api changes) -->
<!-- - Build or CI related changes -->
<!-- - Documentation content changes -->
<!-- - Sample app changes -->
<!-- - Other... Please describe: -->


## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
There is currently no way to interoperate between the `IBufferWriter<T>` interface and the `Stream` class. Many APIs in the BCL and in 3rd party libraries use `Stream` as the standard way to accept an instance that can be written to or read from, and there is no built-in way to have a memory stream that is also using memory pooling, because none of the types in the BCL and in the `HighPerformance` package currently support both features at the same time. This PR fixes that 😄🚀

Consider this example that I saw from a user in the C# Discord server:
```csharp
public byte[] Compress(byte[] source)
{
    MemoryStream output = new MemoryStream();
    using (DeflateStream dstream = new DeflateStream(output, CompressionLevel.Optimal))
    {
        dstream.Write(source, 0, source.Length);
    }
    return output.ToArray();
}

public byte[] Decompress(byte[] source)
{
    MemoryStream input = new MemoryStream(source);
    MemoryStream output = new MemoryStream();
    using (DeflateStream dstream = new DeflateStream(input, CompressionMode.Decompress))
    {
        dstream.CopyTo(output);
    }
    return output.ToArray();
}
```

You can see how the code is very memory inefficient: the `MemoryStream` type will just `new`-up arrays as it goes, and at the end `ToArray()` is used too, which will duplicate the arrays too. Even by removing that, the main issue within `MemoryStream` remains. With the new extension introduced in this PR, these two APIs can be rewritten much more efficiently, like this:

```csharp
public IMemoryOwner<byte> Compress(ReadOnlySpan<byte> span)
{
    ArrayPoolBufferWriter<byte> bufferWriter = new ArrayPoolBufferWriter<byte>();

    using DeflateStream deflateStream = new DeflateStream(bufferWriter.AsStream(), CompressionLevel.Optimal);

    deflateStream.Write(span);

    return bufferWriter;
}

public IMemoryOwner<byte> Decompress(ReadOnlyMemory<byte> memory)
{
    ArrayPoolBufferWriter<byte> bufferWriter = new ArrayPoolBufferWriter<byte>(memory.Length);

    using DeflateStream deflateStream = new DeflateStream(memory.AsStream(), CompressionMode.Decompress);

    deflateStream.CopyTo(bufferWriter.AsStream());

    return bufferWriter;
}
```

Which heavily leverages all the various APIs and helpers in the `HighPerformance` package, and gives us the following results:

| Method | Categories |        Mean |     Error |    StdDev | Ratio |    Gen 0 |    Gen 1 |    Gen 2 | Allocated |
|------- |----------- |------------:|----------:|----------:|------:|---------:|---------:|---------:|----------:|
|  new[] |   COMPRESS | 29,923.5 us | 174.19 us | 162.94 us |  1.00 | 312.5000 | 312.5000 | 312.5000 | 3089853 B |
|   **pool** |   COMPRESS | **29,116.0 us** | 120.55 us | 106.87 us |  **0.97** |        - |        - |        - |     **297 B** |
|        |            |             |           |           |       |          |          |          |           |
|  new[] | DECOMPRESS |    832.9 us |   9.96 us |   8.83 us |  1.00 | 337.8906 | 336.9141 | 336.9141 | 2966680 B |
|   **pool** | DECOMPRESS |    **119.6 us** |   0.70 us |   0.62 us |  **0.14** |        - |        - |        - |     **392 B** |

This benchmark compresses and decompresses a 1MB buffer, using the two methods detailed above.
You can see the vastly reduced memory allocations using the pooled writer backed stream 🚀

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
This PR introduces this new extension:

```csharp
namespace Microsoft.Toolkit.HighPerformance.Extensions
{
    public static class ArrayPoolBufferWriterExtensions
    {
        public static Stream AsStream(this ArrayPoolBufferWriter<byte> writer);
    }

    public static class IBufferWriterExtensions
    {
        public static Stream AsStream(this IBufferWriter<byte> writer);
    }
}
```

Which helps to interoperate between the `IBufferWriter<T>` interface and the `Stream` class. In particular, since the `HighPerformance` package includes the `ArrayPoolBufferWriter<T>` type, this extension allows users to use that as a `Stream`, and then keep working with the resulting `ReadOnlyMemory<T>` produced by that type, as shown above.

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] ~~Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->~~
- [ ] ~~Sample in sample app has been added / updated (for bug fixes / features)~~
    - [ ] ~~Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)~~
- [X] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes
2020-11-14 12:39:46 +00:00
Sergio Pedri
3550ed4473 Fixed nullability warning due to missing annotation 2020-11-14 12:30:29 +01:00
Rosario Pulella
08e8ed5f81 Merge branch 'master' into feature/ibuffer-writer-stream2 2020-11-13 17:50:58 -05:00
h82258652
9db13dfb4e Merge branch 'master' into lazyLoadingThreshold 2020-11-13 21:21:19 +08:00
msftbot[bot]
ade6c5bc7e New [ReadOnly]Memory<T>.Cast<TFrom, TTo> extensions (#3520)
## PR Type
What kind of change does this PR introduce?
<!-- Please uncomment one or more that apply to this PR. -->

 - Feature

## What is the current behavior?
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
Right now there is no (easy) way to cast a `Memory<TFrom>` instance to a `Memory<TTo>` instance. There are APIs to to do that for `Span<T>` instances, but not for `Memory<T>`. The reason for that is that with a `Span<T>` it's just a matter of retrieving the wrapped reference, reinterpreting it and then adjusting the size, then creating a new `Span<T>` instance. But a `Memory<T>` instance is completely different: it wraps an object which could be either a `T[]` array, a `MemoryManager<T>` instance, etc. The result is that currently there are no APIs in the BCL nor in the toolkit to just "cast" a `Memory<T>`.

This feature has been requested by a number of developers, including in a well known library such as `ImageSharp`:

> Yes, that's exactly what I would need. But I'm wondering how would you implement it.
> It's certainly non trivial to cast a `Memory<byte>` to a `Memory<TPixel>` and if there's an API for that I would gladly want to know...
> So I pressume `ImageSharp` would need to do some work under the hood.

(_`ImageSharp` issue, [here](https://github.com/SixLabors/ImageSharp/issues/1097#issuecomment-580639914)_)
To solve that, I created a very simplified version of the code included in this PR, into a PR [here](https://github.com/SixLabors/ImageSharp/pull/1314).

Having this available right out of the box in the `HighPerformance` package would be helpful in a number of similar situations, especially with `Memory<T>` APIs becoming more and more common across libraries now (as they've been out for a while).

## What is the new behavior?
<!-- Describe how was this issue resolved or changed? -->
This PR includes 4 new extensions for the `Memory<T>` and `ReadOnlyMemory<T>` types that enable the following:

```csharp
// Cast between two Memory<T> instances...
Memory<byte> memoryOfBytes = new byte[128].AsMemory();
Memory<float> memoryOfFloats = memoryOfBytes.Cast<byte, float>();

// ...any number of times is needed
Memory<int> memoryOfInts = memoryOfFloats.Cast<float, int>();
Memory<byte> backToBytesMemory = memoryOfInts.Cast<int, byte>();

// Or just convert into bytes directly
Memory<int> sourceAsInts = new int[128].AsMemory();
Memory<byte> sourceAsBytes = sourceAsInts.AsBytes();

// Want to get a stream from a string? Why not! 😄
using (Stream stream = "Hello world".AsMemory().AsBytes().AsStream())
{
    // Use the stream here, which reads *directly* from the string data!
}
```

Here is the full list of the new APIs introduced in this PR:

```csharp
namespace Microsoft.Toolkit.HighPerformance.Extensions
{
    public static class MemoryExtensions
    {
        public static Memory<byte> AsBytes<T>(this Memory<T> memory)
            where T : unmanaged;

        public static Memory<TTo> Cast<TFrom, TTo>(this Memory<TFrom> memory)
            where TFrom : unmanaged
            where TTo : unmanaged;
    }

    public static class ReadOnlyMemoryExtensions
    {
        public static ReadOnlyMemory<byte> AsBytes<T>(this ReadOnlyMemory<T> memory)
            where T : unmanaged;

        public static ReadOnlyMemory<TTo> Cast<TFrom, TTo>(this ReadOnlyMemory<TFrom> memory)
            where TFrom : unmanaged
            where TTo : unmanaged;
    }
}
```

## Notes

Marking as draft as this is still being worked on, but feedbacks and reviews are welcome! 😄

## PR Checklist

Please check if your PR fulfills the following requirements:

- [X] Tested code with current [supported SDKs](../readme.md#supported)
- [ ] ~~Pull Request has been submitted to the documentation repository [instructions](..\contributing.md#docs). Link: <!-- docs PR link -->~~
- [ ] ~~Sample in sample app has been added / updated (for bug fixes / features)~~
    - [ ] ~~Icon has been created (if new sample) following the [Thumbnail Style Guide and templates](https://github.com/windows-toolkit/WindowsCommunityToolkit-design-assets)~~
- [X] Tests for the changes have been added (for bug fixes / features) (if applicable)
- [X] Header has been added to all new source files (run *build/UpdateHeaders.bat*)
- [X] Contains **NO** breaking changes
2020-11-12 21:02:06 +00:00
Rosario Pulella
02fdd72f84 Merge branch 'master' into feature/memory-cast 2020-11-12 14:31:57 -05:00