Displaying 4 results from an estimated 4 matches for "badscop_stat".
2013 Jul 22
0
[LLVMdev] Analysis of polly-detect overhead in oggenc
...orm the INVALID macro into function calls, that format
> the text and that set LastFailure.
Translating the INVALID macro into function calls would complicate the operations for different counters.
For example, currently users can add a new counter by simply adding the following line:
BADSCOP_STAT(SimpleLoop, "Loop not in -loop-simplify form");
But if we translate INVALID macro into function calls, then users has to add a function for this counter:
void INVLIAD_SimpleLoop (...).
This is because we cannot use the following macro combination in function calls:
if (!Context.Verify...
2013 Jul 22
2
[LLVMdev] Analysis of polly-detect overhead in oggenc
...o into function calls, that format
>> the text and that set LastFailure.
> Translating the INVALID macro into function calls would complicate the operations for different counters.
> For example, currently users can add a new counter by simply adding the following line:
> BADSCOP_STAT(SimpleLoop, "Loop not in -loop-simplify form");
> But if we translate INVALID macro into function calls, then users has to add a function for this counter:
> void INVLIAD_SimpleLoop (...). \
^^ No uppercase in function name...
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
2013 Jul 23
0
[LLVMdev] Analysis of polly-detect overhead in oggenc
...calls, that format
>>> the text and that set LastFailure.
>> Translating the INVALID macro into function calls would complicate the operations for different counters.
>> For example, currently users can add a new counter by simply adding the following line:
>> BADSCOP_STAT(SimpleLoop, "Loop not in -loop-simplify form");
>> But if we translate INVALID macro into function calls, then users has to add a function for this counter:
>> void INVLIAD_SimpleLoop (...). \
>
> ^^ No uppercase...