-
Notifications
You must be signed in to change notification settings - Fork 14.6k
[GC] Use MapVector
for GCStrategyMap
#132729
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
8 commits
Select commit
Hold shift + click to select a range
76d7df6
[GC] Use `MapVector` for `GCStrategyMap`
paperchalice 6ab0128
address comments
paperchalice 4e4afb4
set GC name
paperchalice 3b055dc
Add unit test
paperchalice 97b8e0d
Merge branch 'main' into gc-strategy
paperchalice eebd532
convert operator[] to const member operator
paperchalice 285430f
Merge branch 'gc-strategy' of github.com:paperchalice/llvm-project in…
paperchalice 916d58e
Use try_emplace in GCFunctionAnalysis
paperchalice 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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -33,6 +33,7 @@ | |||||||||||||
#define LLVM_CODEGEN_GCMETADATA_H | ||||||||||||||
|
||||||||||||||
#include "llvm/ADT/DenseMap.h" | ||||||||||||||
#include "llvm/ADT/MapVector.h" | ||||||||||||||
#include "llvm/ADT/SmallVector.h" | ||||||||||||||
#include "llvm/ADT/StringMap.h" | ||||||||||||||
#include "llvm/ADT/StringRef.h" | ||||||||||||||
|
@@ -151,15 +152,47 @@ class GCFunctionInfo { | |||||||||||||
size_t live_size(const iterator &p) const { return roots_size(); } | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
struct GCStrategyMap { | ||||||||||||||
StringMap<std::unique_ptr<GCStrategy>> StrategyMap; | ||||||||||||||
class GCStrategyMap { | ||||||||||||||
using MapT = | ||||||||||||||
MapVector<std::string, std::unique_ptr<GCStrategy>, StringMap<unsigned>>; | ||||||||||||||
MapT Strategies; | ||||||||||||||
|
||||||||||||||
public: | ||||||||||||||
GCStrategyMap() = default; | ||||||||||||||
GCStrategyMap(GCStrategyMap &&) = default; | ||||||||||||||
|
||||||||||||||
/// Handle invalidation explicitly. | ||||||||||||||
bool invalidate(Module &M, const PreservedAnalyses &PA, | ||||||||||||||
ModuleAnalysisManager::Invalidator &Inv); | ||||||||||||||
|
||||||||||||||
using iterator = MapT::iterator; | ||||||||||||||
using const_iterator = MapT::const_iterator; | ||||||||||||||
using reverse_iterator = MapT::reverse_iterator; | ||||||||||||||
using const_reverse_iterator = MapT::const_reverse_iterator; | ||||||||||||||
|
||||||||||||||
iterator begin() { return Strategies.begin(); } | ||||||||||||||
const_iterator begin() const { return Strategies.begin(); } | ||||||||||||||
iterator end() { return Strategies.end(); } | ||||||||||||||
const_iterator end() const { return Strategies.end(); } | ||||||||||||||
|
||||||||||||||
reverse_iterator rbegin() { return Strategies.rbegin(); } | ||||||||||||||
const_reverse_iterator rbegin() const { return Strategies.rbegin(); } | ||||||||||||||
reverse_iterator rend() { return Strategies.rend(); } | ||||||||||||||
const_reverse_iterator rend() const { return Strategies.rend(); } | ||||||||||||||
|
||||||||||||||
bool empty() const { return Strategies.empty(); } | ||||||||||||||
|
||||||||||||||
std::unique_ptr<GCStrategy> &operator[](const std::string &GCName) { | ||||||||||||||
return Strategies[GCName]; | ||||||||||||||
} | ||||||||||||||
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
|
||||||||||||||
|
||||||||||||||
std::pair<iterator, bool> try_emplace(const std::string &GCName) { | ||||||||||||||
return Strategies.try_emplace(GCName); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
bool contains(const std::string &GCName) const { | ||||||||||||||
return Strategies.find(GCName) != Strategies.end(); | ||||||||||||||
} | ||||||||||||||
}; | ||||||||||||||
|
||||||||||||||
/// An analysis pass which caches information about the entire Module. | ||||||||||||||
|
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
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.
Where do these names come from? Can this use StringRef? Cursory search seems to suggest these are already live in the LLVMContext