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

Optimize ComputerInkBoundingBox(LtoR), remove unnecessary additional branch #10630

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

h3xds1nz
Copy link
Member

@h3xds1nz h3xds1nz commented Mar 24, 2025

Description

Optimizes ComputerInkBoundingBox / ComputerInkBoundingBoxLtoR methods, collapsing additional branch for TextFormattingMode.Display into EmGlyphMetrics, which now takes a readonly ref of GlyphMetrics to avoid copies.

This is one of the hottest methods traditionally when working with glyphs, so it deserves a bit of special care. EmGlyphMetrics is just a data container with a bit of logic, and it is kind of imperative that the logic in the ctor is actually inlined inside the original method and the struct ceases to exist at runtime, otherwise due to the nature of the code, this could get pretty messy at the given JIT state.

This gets inlined usually even without forcing it via AggressiveInlining but it doesn't hurt to force it in this case, it would hurt in case it didn't get inlined, so we want to prevent that from happening.

For 8 glyphs, the difference is already significant:

Method otherVal Mean [ns] Error [ns] StdDev [ns] Code Size [B] Allocated [B]
Original GlyphMetrics[8] 42.41 ns 0.251 ns 0.222 ns 2,882 B -
PR__EDIT GlyphMetrics[8] 34.01 ns 0.188 ns 0.166 ns 2,736 B -

Customer Impact

Improved performance.

Regression

No.

Testing

Local build, perf benchmarks.

Risk

Imho it is low, we don't change any existing logic.

Microsoft Reviewers: Open in CodeFlow

@h3xds1nz h3xds1nz requested review from a team as code owners March 24, 2025 14:59
@dotnet-policy-service dotnet-policy-service bot added PR metadata: Label to tag PRs, to facilitate with triage Community Contribution A label for all community Contributions labels Mar 24, 2025
Copy link

codecov bot commented Mar 24, 2025

Codecov Report

Attention: Patch coverage is 0% with 41 lines in your changes missing coverage. Please review.

Project coverage is 11.23166%. Comparing base (b6914d7) to head (4703b5d).
Report is 5 commits behind head on main.

Additional details and impacted files
@@                 Coverage Diff                 @@
##                main      #10630         +/-   ##
===================================================
- Coverage   11.45872%   11.23166%   -0.22706%     
===================================================
  Files           3214        3353        +139     
  Lines         648458      667987      +19529     
  Branches       71511       74978       +3467     
===================================================
+ Hits           74305       75026        +721     
- Misses        572989      591798      +18809     
+ Partials        1164        1163          -1     
Flag Coverage Δ
Debug 11.23166% <0.00000%> (-0.22706%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Community Contribution A label for all community Contributions PR metadata: Label to tag PRs, to facilitate with triage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant