-
Notifications
You must be signed in to change notification settings - Fork 15.5k
RuntimeLibcalls: Add memset_pattern* calls to darwin systems #167083
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
Merged
arsenm
merged 3 commits into
main
from
users/arsenm/runtime-libcalls/add-memset-pattern-darwin
Nov 26, 2025
Merged
RuntimeLibcalls: Add memset_pattern* calls to darwin systems #167083
arsenm
merged 3 commits into
main
from
users/arsenm/runtime-libcalls/add-memset-pattern-darwin
Nov 26, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Nov 8, 2025
Contributor
Author
This was referenced Nov 8, 2025
06d0094 to
a25d7fe
Compare
640cf80 to
6ee0ec3
Compare
a25d7fe to
61c70b5
Compare
28d3aa9 to
abfd3b2
Compare
61c70b5 to
d787eb1
Compare
abfd3b2 to
9150bc5
Compare
d787eb1 to
5c9ed73
Compare
9150bc5 to
4ab6bb5
Compare
5c9ed73 to
03dc81d
Compare
aemerson
approved these changes
Nov 12, 2025
fhahn
approved these changes
Nov 12, 2025
Contributor
fhahn
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks
03dc81d to
ac9be6e
Compare
4ab6bb5 to
9682a52
Compare
Calloc was already here, but not the others. Also add manual type information.
Script scraped dump of most functions in TargetLibraryInfo.def, with existing entries and a few special cases removed. This only adds the definitions, and doesn't add them to any system yet. Adding them in the correct places is the hard part, since it's all written as opt-out with manually written exemptions in TargetLibraryInfo.
This is one of the easier cases to comprehend in TargetLibraryInfo's setup.
9682a52 to
d668db8
Compare
ac9be6e to
12b2b36
Compare
Base automatically changed from
users/arsenm/runtime-libcalls/add-more-entries-from-targetlibraryinfo
to
main
November 26, 2025 15:19
Collaborator
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/110/builds/6515 Here is the relevant piece of the build log for the reference |
tanji-dg
pushed a commit
to tanji-dg/llvm-project
that referenced
this pull request
Nov 27, 2025
…7083) This is one of the easier cases to comprehend in TargetLibraryInfo's setup.
GeneraluseAI
pushed a commit
to GeneraluseAI/llvm-project
that referenced
this pull request
Nov 27, 2025
…7083) This is one of the easier cases to comprehend in TargetLibraryInfo's setup.
augusto2112
pushed a commit
to augusto2112/llvm-project
that referenced
this pull request
Dec 3, 2025
…7083) This is one of the easier cases to comprehend in TargetLibraryInfo's setup.
kcloudy0717
pushed a commit
to kcloudy0717/llvm-project
that referenced
this pull request
Dec 4, 2025
…7083) This is one of the easier cases to comprehend in TargetLibraryInfo's setup.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

This is one of the easier cases to comprehend in TargetLibraryInfo's
setup.