search for: aliaskind

Displaying 4 results from an estimated 4 matches for "aliaskind".

2015 Jun 15
2
[LLVMdev] AliasAnalysis refactoring for the new pass manager
...lly for mod-ref information which might reasonably be used in interfaces that aren't precisely that of AA. Any concerns so far? > > > Ok, provided you're happy with this, I'd like to ask what names and naming conventions people like. Here is a straw-man: > > enum class AliasKind { > NoAlias = 0, > MayAlias, > PartialAlias, > MustAlias > }; > > I find the "Alias" suffix redundant, but "No", "Maybe", "Partial", and "Must" also seem awkward. Is there a better enum name than "AliasKind"?...
2015 Jun 13
7
[LLVMdev] AliasAnalysis refactoring for the new pass manager
...this is cleaner, especially for mod-ref information which might reasonably be used in interfaces that aren't precisely that of AA. Any concerns so far? Ok, provided you're happy with this, I'd like to ask what names and naming conventions people like. Here is a straw-man: enum class AliasKind { NoAlias = 0, MayAlias, PartialAlias, MustAlias }; I find the "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...
2017 Jul 16
2
PartialAlias: different start addresses
On Sun, Jul 16, 2017 at 2:34 PM, Nuno Lopes <nunoplopes at sapo.pt> wrote: > On Sun, Jul 16, 2017, 12:45 PM Nuno Lopes wrote: >>> >>>> On 07/15/2017 04:51 AM, Nuno Lopes wrote: >>>> >>>>> On 07/14/2017 04:37 PM, Nuno Lopes wrote: >>>>>> >>>>>>> Thank you all for your replies.
2015 Jun 16
2
[LLVMdev] AliasAnalysis refactoring for the new pass manager
> On 2015-Jun-15, at 16:29, Chandler Carruth <chandlerc at gmail.com> wrote: > > On Mon, Jun 15, 2015 at 3:56 PM Duncan P. N. Exon Smith <dexonsmith at apple.com> wrote: > I like this colour: > > enum class AliasKind /* or AliasCategory? */ { > Null, > Unknown, > Partial, > Complete > }; > > So, the only non-bikeshed-color argument I have (which is also referenced by Philip, but i couldn't reply to both) suggests we *really* want NoAlias, > MayAlias, and...