forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 2
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
Petrov Maksim. Lab 1. Var 3. #4
Closed
soileks
wants to merge
11
commits into
NN-complr-tech:course-spring-2024
from
soileks:course-spring-2024
Closed
Petrov Maksim. Lab 1. Var 3. #4
soileks
wants to merge
11
commits into
NN-complr-tech:course-spring-2024
from
soileks:course-spring-2024
Conversation
This file contains 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
* first commit * remove redundant foreach * getting funcname shorter
Deprecated functions warning plugin.
* Create rename plugin
* first commit * make action * made tests more diversed and got rid of using namespace
* Task is ready! * Update! * Update for workflow * Update code * Update code * 1. The ASTContext *Context field was removed from the PrintClassVisitor class as unnecessary. 2. The CreateASTConsumer method of the PrintClassLASTAction class now returns make_unique, not new. 3. The help option for the plugin has been added and tested. * Update code for reload actions (windows-build failed).
Deprecated plugin
Fix return statement position
Kuznetsov-Artyom
pushed a commit
that referenced
this pull request
Dec 27, 2024
Somewhat confusingly a `SCEVMulExpr` is a `SCEVNAryExpr`, so can have > 2 operands. Previously, the vscale immediate matching did not check the number of operands of the `SCEVMulExpr`, so would ignore any operands after the first two. This led to incorrect codegen (and results) for ArmSME in IREE (https://github.com/iree-org/iree), which sometimes addresses things that are a `vscale * vscale` multiple away. The test added with this change shows an example reduced from IREE. The second write should be offset from the first `16 * vscale * vscale` (* 4 bytes), however, previously LSR dropped the second vscale and instead offset the write by `#4, mul vl`, which is an offset of `16 * vscale` (* 4 bytes). (cherry picked from commit 7fad04e)
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.
No description provided.