search for: possiblyaliased

Displaying 2 results from an estimated 2 matches for "possiblyaliased".

2015 Jun 15
2
[LLVMdev] AliasAnalysis refactoring for the new pass manager
...ot;Alias" suffix redundant, but "No", "Maybe", "Partial", and "Must" also seem awkward. Is there a better enum name than "AliasKind"? These aren't *just* results, so I don't like the current name. > > AliasRelationship? None, May/PossiblyAliased/Unknown, Aliased, PartiallyAliased? > > (tense could use some tweaking and I suppose this still has the suffix problem in all except the "None" case... ) I like this colour: enum class AliasKind /* or AliasCategory? */ { Null, Unknown, Partial, Complet...
2015 Jun 13
7
[LLVMdev] AliasAnalysis refactoring for the new pass manager
Greetings all, I'm working on refactoring the alias analysis layers to remove the usage of analysis groups and make the logic sharable between old and new pass managers, and I have a couple of questions below. As background, the overall plan that I've discussed with Hal and a few others previously is as follows: - Create an AliasAnalysisManager which is provided by a normal analysis