Displaying 8 results from an estimated 8 matches for "051643".
2018 Apr 18
2
LLVM Pass Managers
...hy so. What to use and when to use it is not clear to
>> me.
>>
> PassManager is the result of a long going effort to replace the default
> pass manager of opt and clang. Here's the original RFC containing the
> motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html
>
> LegacyPassManager is currently still the default, but we are really close
> to switching over the the new one. Both opt and clang have switches to
> enable the new one, by calling `opt -passes="...."` or `clang
> -fexperimental-new-pass-manager`. PassBuilder is ess...
2018 Apr 20
2
LLVM Pass Managers
...gt;> use it is not clear to me.
>>>>
>>> PassManager is the result of a long going effort to replace the default
>>> pass manager of opt and clang. Here's the original RFC containing the
>>> motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.ht
>>> ml
>>>
>>> LegacyPassManager is currently still the default, but we are really
>>> close to switching over the the new one. Both opt and clang have switches
>>> to enable the new one, by calling `opt -passes="...."` or `clang
>>>...
2018 Apr 17
0
LLVM Pass Managers
...t; but I have no idea why so. What to use and when to use it is not clear to
> me.
>
PassManager is the result of a long going effort to replace the default
pass manager of opt and clang. Here's the original RFC containing the
motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html
LegacyPassManager is currently still the default, but we are really close
to switching over the the new one. Both opt and clang have switches to
enable the new one, by calling `opt -passes="...."` or `clang
-fexperimental-new-pass-manager`. PassBuilder is essentially a big factory
t...
2018 Apr 20
0
LLVM Pass Managers
...peline, but I have no idea why so. What to use and when to use it is not clear to me.
> PassManager is the result of a long going effort to replace the default pass manager of opt and clang. Here's the original RFC containing the motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html <http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html>
>
> LegacyPassManager is currently still the default, but we are really close to switching over the the new one. Both opt and clang have switches to enable the new one, by calling `opt -passes="...."` or `c...
2018 Apr 20
2
LLVM Pass Managers
...>>>>>
>>>> PassManager is the result of a long going effort to replace the default
>>>> pass manager of opt and clang. Here's the original RFC containing the
>>>> motivation: http://lists.llvm.org/pipermai
>>>> l/llvm-dev/2012-July/051643.html
>>>>
>>>> LegacyPassManager is currently still the default, but we are really
>>>> close to switching over the the new one. Both opt and clang have switches
>>>> to enable the new one, by calling `opt -passes="...."` or `clang
>>&...
2018 Apr 19
0
LLVM Pass Managers
...nd when to use it is not
>>> clear to me.
>>>
>> PassManager is the result of a long going effort to replace the default
>> pass manager of opt and clang. Here's the original RFC containing the
>> motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.
>> html
>>
>> LegacyPassManager is currently still the default, but we are really close
>> to switching over the the new one. Both opt and clang have switches to
>> enable the new one, by calling `opt -passes="...."` or `clang
>> -fexperimental-new-pas...
2018 Apr 20
0
LLVM Pass Managers
...ne, but I have no idea why so. What to use and when to use it is not clear to me.
>> PassManager is the result of a long going effort to replace the default pass manager of opt and clang. Here's the original RFC containing the motivation: http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html <http://lists.llvm.org/pipermail/llvm-dev/2012-July/051643.html>
>>
>> LegacyPassManager is currently still the default, but we are really close to switching over the the new one. Both opt and clang have switches to enable the new one, by calling `opt -passes="...."...
2018 Apr 17
2
LLVM Pass Managers
Hello all,
I have 2 separate questions:
1, What are the differences between *LegacyPassManager* and *PassManager*?
I see that *opt* uses the former most of the times while the latter is used
via *PassBuilder* API when an user wants to build her own pipeline, but I
have no idea why so. What to use and when to use it is not clear to me.
2, I've asked this question once but have had no answer,