Displaying 5 results from an estimated 5 matches for "reportinvalidalias".
2013 Jul 22
2
[LLVMdev] Analysis of polly-detect overhead in oggenc
...all patch file for this purpose -:)
I think it would still be nice to get rid of this macro. We could
probably have a default function that takes an enum to report different
errors in the reportInvalid(enum errorKind) style. And then several
others that would allow more complex formatting (e.g.
reportInvalidAlias(AliasSet)). Especially the code after 'isMustAlias()'
would be nice to move out of the main scop detection.
However, this issue is not directly related to the speedup work, so
you are welcome to skip it for now.
(Btw. thanks for not blindly following my suggestions!)
>> 2...
2013 Jul 23
0
[LLVMdev] Analysis of polly-detect overhead in oggenc
...purpose -:)
>
>I think it would still be nice to get rid of this macro. We could
>probably have a default function that takes an enum to report different
>errors in the reportInvalid(enum errorKind) style. And then several
>others that would allow more complex formatting (e.g.
>reportInvalidAlias(AliasSet)). Especially the code after 'isMustAlias()'
>would be nice to move out of the main scop detection.
>
>However, this issue is not directly related to the speedup work, so
>you are welcome to skip it for now.
>
>(Btw. thanks for not blindly following my suggestion...
2013 Jul 23
2
[LLVMdev] Analysis of polly-detect overhead in oggenc
...{
> /// @return True if the call instruction is valid, false otherwise.
> static bool isValidCallInst(CallInst &CI);
>
> + /// @brief Report invalid alias.
> + ///
> + /// @param AS The alias set.
> + /// @param Context The context of scop detection.
> + void reportInvalidAlias(AliasSet &AS, DetectionContext &Context) const;
Nice.
> diff --git a/lib/Analysis/ScopDetection.cpp b/lib/Analysis/ScopDetection.cpp
> index 9b2a9a8..4f33f6c 100644
> --- a/lib/Analysis/ScopDetection.cpp
> +++ b/lib/Analysis/ScopDetection.cpp
> @@ -108,11 +108,13 @@ STATISTI...
2013 Jul 22
0
[LLVMdev] Analysis of polly-detect overhead in oggenc
At 2013-07-22 12:16:53,"Tobias Grosser" <tobias at grosser.es> wrote:
>On 07/21/2013 07:33 PM, Star Tan wrote:
>> At 2013-07-22 01:40:31,"Tobias Grosser" <tobias at grosser.es> wrote:
>>
>>> On 07/21/2013 09:49 AM, Star Tan wrote:
>>>> Hi all,
>>>>
>>>>
>>>> I have attached a patch file to
2013 Jul 22
2
[LLVMdev] Analysis of polly-detect overhead in oggenc
On 07/21/2013 07:33 PM, Star Tan wrote:
> At 2013-07-22 01:40:31,"Tobias Grosser" <tobias at grosser.es> wrote:
>
>> On 07/21/2013 09:49 AM, Star Tan wrote:
>>> Hi all,
>>>
>>>
>>> I have attached a patch file to reduce the polly-detect overhead.
>>
>> Great.
>>
>>> My idea is to avoid calling TypeFinder in