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

Optimise allocations in AssertEx.NormalizeWhitespace and OperationTreeVerifier.Verify #75202

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
145 changes: 127 additions & 18 deletions src/Compilers/Test/Core/Assert/AssertEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#nullable disable

using System;
using System.Buffers;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Immutable;
Expand Down Expand Up @@ -557,12 +558,33 @@ public static void AssertEqualToleratingWhitespaceDifferences(
[CallerFilePath] string expectedValueSourcePath = null,
[CallerLineNumber] int expectedValueSourceLine = 0)
{
var normalizedExpected = NormalizeWhitespace(expected);
var normalizedActual = NormalizeWhitespace(actual);
AssertEqualToleratingWhitespaceDifferences(expected.AsSpan(), actual.AsSpan(), message, escapeQuotes, expectedValueSourcePath, expectedValueSourceLine);
}

if (normalizedExpected != normalizedActual)
// compares against a baseline
public static void AssertEqualToleratingWhitespaceDifferences(
ReadOnlySpan<char> expected,
ReadOnlySpan<char> actual,
string message = null,
bool escapeQuotes = false,
[CallerFilePath] string expectedValueSourcePath = null,
[CallerLineNumber] int expectedValueSourceLine = 0)
{
var normalizedExpected = NormalizeWhitespace(expected, out var pooled1).Span;
var normalizedActual = NormalizeWhitespace(actual, out var pooled2).Span;

if (!normalizedExpected.SequenceEqual(normalizedActual))
{
Assert.True(false, GetAssertMessage(expected.ToString(), actual.ToString(), message, escapeQuotes, expectedValueSourcePath, expectedValueSourceLine));
}

if (pooled1 != null)
{
ArrayPool<char>.Shared.Return(pooled1);
}
if (pooled2 != null)
{
Assert.True(false, GetAssertMessage(expected, actual, message, escapeQuotes, expectedValueSourcePath, expectedValueSourceLine));
ArrayPool<char>.Shared.Return(pooled2);
}
}

Expand Down Expand Up @@ -594,37 +616,124 @@ public static void AssertResultsEqual(string result1, string result2)

public static void AssertContainsToleratingWhitespaceDifferences(string expectedSubString, string actualString)
{
expectedSubString = NormalizeWhitespace(expectedSubString);
actualString = NormalizeWhitespace(actualString);
Assert.Contains(expectedSubString, actualString, StringComparison.Ordinal);
AssertContainsToleratingWhitespaceDifferences(expectedSubString.AsSpan(), actualString.AsSpan());
}

public static void AssertContainsToleratingWhitespaceDifferences(ReadOnlySpan<char> expectedSubString, ReadOnlySpan<char> actualString)
{
expectedSubString = NormalizeWhitespace(expectedSubString, out var pooled1).Span;
actualString = NormalizeWhitespace(actualString, out var pooled2).Span;

if (!actualString.Contains(expectedSubString, StringComparison.Ordinal))
{
// Call through to actual API to get same error message experience
Assert.Contains(expectedSubString.ToString(), actualString.ToString(), StringComparison.Ordinal);
}

if (pooled1 != null)
{
ArrayPool<char>.Shared.Return(pooled1);
}
if (pooled2 != null)
{
ArrayPool<char>.Shared.Return(pooled2);
}
}

public static void AssertStartsWithToleratingWhitespaceDifferences(string expectedSubString, string actualString)
{
expectedSubString = NormalizeWhitespace(expectedSubString);
actualString = NormalizeWhitespace(actualString);
Assert.StartsWith(expectedSubString, actualString, StringComparison.Ordinal);
AssertStartsWithToleratingWhitespaceDifferences(expectedSubString.AsSpan(), actualString.AsSpan());
}

public static void AssertStartsWithToleratingWhitespaceDifferences(ReadOnlySpan<char> expectedSubString, ReadOnlySpan<char> actualString)
{
expectedSubString = NormalizeWhitespace(expectedSubString, out var pooled1).Span;
actualString = NormalizeWhitespace(actualString, out var pooled2).Span;

if (!actualString.StartsWith(expectedSubString, StringComparison.Ordinal))
{
// Call through to actual API to get same error message experience
Assert.StartsWith(expectedSubString.ToString(), actualString.ToString(), StringComparison.Ordinal);
}

if (pooled1 != null)
{
ArrayPool<char>.Shared.Return(pooled1);
}
hamarb123 marked this conversation as resolved.
Show resolved Hide resolved
if (pooled2 != null)
{
ArrayPool<char>.Shared.Return(pooled2);
}
}

internal static string NormalizeWhitespace(string input)
internal static ReadOnlyMemory<char> NormalizeWhitespace(ReadOnlySpan<char> input, out char[] pooledAlloc)
{
var output = new StringBuilder();
var inputLines = input.Split('\n', '\r');
foreach (var line in inputLines)
// Setup allocation (start with none)
pooledAlloc = null;
int allocSize = 0;

// Loop over each line section until we run out of lines
int prev = 0;
int next = input.IndexOfAny("\r\n".AsSpan());
if (next < 0) next = input.Length;
while (true)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reading through this I'm wondering if it should be broken up a bit. Basically should we have one method that iterates through a ReadOnlySpan<char> and gives us back ReadOnlyMemory<char> for the lines within it?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not exactly sure what you mean by this?

{
var trimmedLine = line.Trim();
// Get the line, trimmed
var trimmedLine = input.Slice(prev, next - prev).Trim();
if (trimmedLine.Length > 0)
{
// We want to append 2 spaces first if we don't start with { or }
int spacesToAppend = 0;
if (!(trimmedLine[0] == '{' || trimmedLine[0] == '}'))
{
output.Append(" ");
spacesToAppend = 2;
}

// Ensure buffer size is big enough
int newChars = spacesToAppend + trimmedLine.Length + Environment.NewLine.Length;
pooledAlloc ??= ArrayPool<char>.Shared.Rent(newChars);
if (pooledAlloc.Length < allocSize + newChars)
{
char[] newArr = ArrayPool<char>.Shared.Rent(allocSize + newChars);
pooledAlloc.AsSpan(0, allocSize).CopyTo(newArr.AsSpan(0, allocSize));
ArrayPool<char>.Shared.Return(pooledAlloc);
pooledAlloc = newArr;
}

output.AppendLine(trimmedLine);
// Copy new text into buffer
pooledAlloc.AsSpan(allocSize, spacesToAppend).Fill(' ');
allocSize += spacesToAppend;
trimmedLine.CopyTo(pooledAlloc.AsSpan(allocSize, trimmedLine.Length));
allocSize += trimmedLine.Length;
Environment.NewLine.AsSpan().CopyTo(pooledAlloc.AsSpan(allocSize, Environment.NewLine.Length));
allocSize += Environment.NewLine.Length;
}

// Exit if done
if (next == input.Length)
{
break;
}

// Find next section
prev = next + 1;
next = input.Slice(prev).IndexOfAny("\r\n".AsSpan());
if (next >= 0)
{
next += prev;
}
else
{
next = input.Length;
}
}

return output.ToString();
// Return the valid part of our allocation
if (pooledAlloc == null)
{
return default;
}
return pooledAlloc.AsMemory(0, allocSize);
}

public static string GetAssertMessage(string expected, string actual, string prefix = null, bool escapeQuotes = false, string expectedValueSourcePath = null, int expectedValueSourceLine = 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1824,7 +1824,7 @@ public override void VisitFlowAnonymousFunction(IFlowAnonymousFunctionOperation
int id = _anonymousFunctionsMap.Count;
_anonymousFunctionsMap.Add(operation, g);
Assert.Equal(OperationKind.AnonymousFunction, g.OriginalOperation.Kind);
GetFlowGraph(_builder, _compilation, g, _region, $"#A{id}{_idSuffix}", _currentIndent.Length + 4, _associatedSymbol);
GetFlowGraph(_builder, _compilation, g, _region, $"#A{id}{_idSuffix}", _currentIndent + 4, _associatedSymbol);
LogString("}");
LogNewLine();
}
Expand Down
Loading