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

[BoundsSafety][APINotes] Add support for bounds attribute on return v… #10214

Merged
merged 1 commit into from
Mar 27, 2025

Conversation

hnrklssn
Copy link

…alue

Previously you could only attach bounds attributes to function parameters. Now return values are also supported, although not yet for ObjectiveC methods. Adds test case for bounds safety API notes in C++, and fixes bug where late parsed bounds attributes on C++ method parameters are parsed twice, due to not being removed from the late attributes list after parsing.

rdar://146332875

…alue

Previously you could only attach bounds attributes to function
parameters. Now return values are also supported, although not yet for
ObjectiveC methods. Adds test case for bounds safety API notes in C++,
and fixes bug where late parsed bounds attributes on C++ method
parameters are parsed twice, due to not being removed from the late
attributes list after parsing.

rdar://146332875
@hnrklssn
Copy link
Author

@swift-ci test llvm

@hnrklssn
Copy link
Author

@swift-ci smoke test

1 similar comment
@hnrklssn
Copy link
Author

@swift-ci smoke test

@@ -7893,7 +7893,7 @@ void Parser::ParseFunctionDeclarator(Declarator &D,
StartLoc = LParenLoc;

/* TO_UPSTREAM(BoundsSafety) ON */
LateParsedAttrList LateParamAttrs(/*PSoon=*/false,
LateParsedAttrList LateParamAttrs(/*PSoon=*/true,

Choose a reason for hiding this comment

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

I think we need a more detailed explanation of PSoon.
Last time when I made changes in ParseBracketDeclarator, I also toggled the PSoon argument from false to true there. In the case I investigated, setting PSoon to false results in late processing of those attributes after the entire C++ class had been parsed. It was incorrect because those attributes belong to member function parameters. In general, I do not fully understand this flag.

At that time, I also checked all call sites of this constructor. IIRC, with your change here, all call sites will be passing true to PSoon. If this is true, maybe we should consider removing this flag?

Copy link
Author

Choose a reason for hiding this comment

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

To be honest, my understanding is somewhat shallow also. But basically, not parsing and removing the late attributes in this context will lead to an error when parsed later, after finishing parsing of the C++ class. Calling ParseLexedCAttributeList requires PSoon to be true because of an assert, so I changed it. Since we actually are parsing directly, I don't see why not.
@rapidsna do you have any context to add about whether we still need PSoon?

@hnrklssn
Copy link
Author

@swift-ci please smoke test

@hnrklssn
Copy link
Author

@swift-ci please smoke test linux

@hnrklssn
Copy link
Author

@swift-ci please smoke test macos

@hnrklssn
Copy link
Author

@swift-ci test linux

@hnrklssn
Copy link
Author

@swift-ci test macos

@hnrklssn hnrklssn merged commit b7df4ea into swiftlang:stable/20240723 Mar 27, 2025
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants