-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[SSAUpdater] Avoid scanning basic blocks to find instruction order. #123803
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 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -432,26 +432,30 @@ void LoadAndStorePromoter::run(const SmallVectorImpl<Instruction *> &Insts) { | |
| } | ||
| } | ||
|
|
||
| // If so, we can queue them all as live in loads. We don't have an | ||
| // efficient way to tell which on is first in the block and don't want to | ||
| // scan large blocks, so just add all loads as live ins. | ||
| // If so, we can queue them all as live in loads. | ||
| if (!HasStore) { | ||
| for (Instruction *I : BlockUses) | ||
| LiveInLoads.push_back(cast<LoadInst>(I)); | ||
| BlockUses.clear(); | ||
| continue; | ||
| } | ||
|
|
||
| // Sort all of the interesting instructions in the block so that we don't | ||
| // have to scan a large block just to find a few instructions. | ||
| std::sort(BlockUses.begin(), BlockUses.end(), | ||
| [](Instruction *A, Instruction *B) { return A->comesBefore(B); }); | ||
|
|
||
| // Otherwise, we have mixed loads and stores (or just a bunch of stores). | ||
| // Since SSAUpdater is purely for cross-block values, we need to determine | ||
| // the order of these instructions in the block. If the first use in the | ||
| // block is a load, then it uses the live in value. The last store defines | ||
| // the live out value. We handle this by doing a linear scan of the block. | ||
| // the live out value. | ||
| Value *StoredValue = nullptr; | ||
| for (Instruction &I : *BB) { | ||
| if (LoadInst *L = dyn_cast<LoadInst>(&I)) { | ||
| for (Instruction *I : BlockUses) { | ||
| if (LoadInst *L = dyn_cast<LoadInst>(I)) { | ||
nikic marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // If this is a load from an unrelated pointer, ignore it. | ||
| if (!isInstInList(L, Insts)) continue; | ||
| if (!isInstInList(L, Insts)) | ||
| continue; | ||
|
||
|
|
||
| // If we haven't seen a store yet, this is a live in use, otherwise | ||
| // use the stored value. | ||
|
|
@@ -465,14 +469,15 @@ void LoadAndStorePromoter::run(const SmallVectorImpl<Instruction *> &Insts) { | |
| continue; | ||
| } | ||
|
|
||
| if (StoreInst *SI = dyn_cast<StoreInst>(&I)) { | ||
| if (StoreInst *SI = dyn_cast<StoreInst>(I)) { | ||
| // If this is a store to an unrelated pointer, ignore it. | ||
| if (!isInstInList(SI, Insts)) continue; | ||
| if (!isInstInList(SI, Insts)) | ||
| continue; | ||
| updateDebugInfo(SI); | ||
|
|
||
| // Remember that this is the active value in the block. | ||
| StoredValue = SI->getOperand(0); | ||
| } else if (auto *AI = dyn_cast<AllocaInst>(&I)) { | ||
| } else if (auto *AI = dyn_cast<AllocaInst>(I)) { | ||
| // Check if this an alloca, in which case we treat it as a store of | ||
| // getValueToUseForAlloca. | ||
| if (!isInstInList(AI, Insts)) | ||
|
|
||
Oops, something went wrong.
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.