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

Optimizations to Backtrace.current(). #647

Merged
merged 6 commits into from
Sep 3, 2024

Conversation

grynspan
Copy link
Contributor

@grynspan grynspan commented Aug 28, 2024

This PR optimizes Backtrace.current():

  • There are now fewer library symbols are captured in a backtrace. This particularly affects debug builds where nested scoped accesses aren't optimized away.
  • I've eliminated almost all copies of the backtrace's underlying data. On 64-bit targets, the only copy required is to final Array storage and is handled by the standard library.
  • I've eliminated runtime bounds checks on backtrace counts that need to be cast from one integer type to another.
  • I've renamed the internal symbol _startCachingForThrownErrors to __SWIFT_TESTING_IS_CAPTURING_A_BACKTRACE_FOR_A_THROWN_ERROR__. This symbol unavoidably shows up in backtraces captured when swift_willThrow is called, so I gave it a name that (hopefully) clearly explains why it's there.

Checklist:

  • Code and documentation should follow the style of the Style Guide.
  • If public symbols are renamed or modified, DocC references should be updated.

@grynspan grynspan added enhancement New feature or request tools integration Integration of swift-testing into tools/IDEs performance Performance issues swift-6.1 labels Aug 28, 2024
@grynspan grynspan self-assigned this Aug 28, 2024
@grynspan
Copy link
Contributor Author

@swift-ci test

@grynspan
Copy link
Contributor Author

@swift-ci test

@grynspan grynspan force-pushed the jgrynspan/backtrace-optimizations branch from ed5b5b4 to 0ca5c8d Compare September 3, 2024 16:50
@grynspan
Copy link
Contributor Author

grynspan commented Sep 3, 2024

@swift-ci test

@grynspan grynspan merged commit 770ff07 into main Sep 3, 2024
3 checks passed
@grynspan grynspan deleted the jgrynspan/backtrace-optimizations branch September 3, 2024 21:27
grynspan added a commit that referenced this pull request Sep 4, 2024
Swift 6 introduces the typed throws feature to replace `rethrows` and to
support error handling in Embedded Swift. This feature uses an ABI that
differs from the one used by untyped (traditional) `throws` and as such,
our hook into the runtime (`_swift_willThrow`) is insufficient to
provide backtrace information for errors thrown this way.

This PR adds support for capturing said backtraces _if and only if_ the
thrown error is of reference type. Such errors have stable addresses
that we can track over time, whereas errors of value type will be copied
when used with typed throws.

~~I'm also taking the opportunity to implement some performance
enhancements to `Backtrace`. It shouldn't get called _very_ frequently,
but it also should be fast!~~ This PR is dependent on #647.

### Checklist:

- [x] Code and documentation should follow the style of the [Style
Guide](https://github.com/apple/swift-testing/blob/main/Documentation/StyleGuide.md).
- [x] If public symbols are renamed or modified, DocC references should
be updated.
@grynspan grynspan added this to the Swift 6.1 milestone Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request performance Performance issues tools integration Integration of swift-testing into tools/IDEs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants