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

[Utf8Array] AsSpanの最適化 #71

Merged
merged 1 commit into from
Nov 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 23 additions & 5 deletions Source/Utf8Utility/Utf8Array.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Text;
using Microsoft.Toolkit.HighPerformance;
#if NET6_0_OR_GREATER
using System.Buffers;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Text.Unicode;
#endif

Expand Down Expand Up @@ -156,19 +157,36 @@ public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan
/// <see cref="ReadOnlySpan{Byte}"/>構造体を取得します。
/// </summary>
/// <returns><see cref="ReadOnlySpan{Byte}"/>構造体</returns>
public ReadOnlySpan<byte> AsSpan() => _value;
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ReadOnlySpan<byte> AsSpan()
{
// 引数の検証をスキップするために、手動でReadOnlySpanを作成する。
#if NET6_0_OR_GREATER
ref var valueStart = ref DangerousGetReference();
return MemoryMarshal.CreateReadOnlySpan(ref valueStart, _value.Length);
#else
var span = new ReadOnlySpan<byte>(_value, 0, _value.Length);
return span;
#endif
}

/// <summary>
/// <see cref="ReadOnlySpan{Byte}"/>構造体を取得します。
/// </summary>
/// <param name="start">初期インデックス</param>
/// <returns><see cref="ReadOnlySpan{Byte}"/>構造体</returns>
public ReadOnlySpan<byte> AsSpan(int start) =>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public ReadOnlySpan<byte> AsSpan(int start)
{
// 引数の検証をスキップするために、手動でReadOnlySpanを作成する。
#if NET6_0_OR_GREATER
AsSpan()[start..];
ref var valueStart = ref DangerousGetReferenceAt(start);
return MemoryMarshal.CreateReadOnlySpan(ref valueStart, _value.Length);
#else
AsSpan().Slice(start);
var span = new ReadOnlySpan<byte>(_value, start, _value.Length);
return span;
#endif
}

/// <summary>
/// 最初の要素への参照を取得します。
Expand Down