-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[LLVM][VecLib] Refactor LIBMVEC integration to be target neutral. #138262
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
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 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 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 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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -29,7 +29,7 @@ static cl::opt<TargetLibraryInfoImpl::VectorLibrary> ClVectorLibrary( | |||||||||||||||||||||
"Accelerate framework"), | ||||||||||||||||||||||
clEnumValN(TargetLibraryInfoImpl::DarwinLibSystemM, | ||||||||||||||||||||||
"Darwin_libsystem_m", "Darwin libsystem_m"), | ||||||||||||||||||||||
clEnumValN(TargetLibraryInfoImpl::LIBMVEC_X86, "LIBMVEC-X86", | ||||||||||||||||||||||
clEnumValN(TargetLibraryInfoImpl::LIBMVEC, "LIBMVEC", | ||||||||||||||||||||||
"GLIBC Vector Math library"), | ||||||||||||||||||||||
clEnumValN(TargetLibraryInfoImpl::MASSV, "MASSV", | ||||||||||||||||||||||
"IBM MASS vector library"), | ||||||||||||||||||||||
|
@@ -1360,8 +1360,15 @@ void TargetLibraryInfoImpl::addVectorizableFunctionsFromVecLib( | |||||||||||||||||||||
addVectorizableFunctions(VecFuncs_DarwinLibSystemM); | ||||||||||||||||||||||
break; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
case LIBMVEC_X86: { | ||||||||||||||||||||||
addVectorizableFunctions(VecFuncs_LIBMVEC_X86); | ||||||||||||||||||||||
case LIBMVEC: { | ||||||||||||||||||||||
switch (TargetTriple.getArch()) { | ||||||||||||||||||||||
default: | ||||||||||||||||||||||
break; | ||||||||||||||||||||||
case llvm::Triple::x86: | ||||||||||||||||||||||
case llvm::Triple::x86_64: | ||||||||||||||||||||||
addVectorizableFunctions(VecFuncs_LIBMVEC_X86); | ||||||||||||||||||||||
break; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+1364
to
+1371
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This PR is prep work for adding support for the AArch64 build of libmvec. We'll want this layout then anyway so I'm going to reject this suggestion. |
||||||||||||||||||||||
break; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
case MASSV: { | ||||||||||||||||||||||
|
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 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
2 changes: 1 addition & 1 deletion
2
llvm/test/Transforms/LoopVectorize/X86/libm-vector-calls-VF2-VF8.ll
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
2 changes: 1 addition & 1 deletion
2
llvm/test/Transforms/LoopVectorize/X86/libm-vector-calls-finite.ll
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 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 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
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.
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.
I think this needs changes in clang too as "LIBMVEC" is currently mapped to "LIBMVEC-X86":
llvm-project/clang/lib/Driver/ToolChains/CommonArgs.cpp
Lines 932 to 937 in 7d01b85
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.
Hmm. There seems to be a bug in clang's checks too, as it's checking for "LIBMVEC-X86" before this remapping, it should actually output
err_drv_unsupported_opt_for_target
for LIBMVEC on AArch64. I think once you rename all uses ofLIBMVEC-X86
toLIBMVEC
in clang that error will start working.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.
Yep, I've just noticed the same.
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.
I've raised #138288 to fix the driver bug. I'll update this PR when that lands and request a re-review.
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.
Done.