Displaying 5 results from an estimated 5 matches for "postrapseudos".
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
...tion -twoaddressinstruction -processimpdefs
-slotindexes -liveintervals -livedebugvars -simple-register-coalescing
-calcspillweights -livestacks -virtregmap -edge-bundles
-spill-code-placement -stack-slot-coloring -machinelicm -edge-bundles
-prologepilog -branch-folder -tailduplication -machine-cp
-postrapseudos -machinedomtree -machine-loops -post-RA-sched
-gc-analysis -machine-block-freq -block-placement2 -machinedomtree
-machine-loops
Now, how can I specify these optimization manually along with llc like
we did with opt tool?
Regards
Shahzad
On Tue, Jun 12, 2012 at 1:23 PM, Duncan Sands <baldrick...
2015 Jan 17
3
[LLVMdev] loop multiversioning
...ntervals -simple-register-coalescing -misched
-machine-block-freq -livedebugvars -livestacks -virtregmap -liveregmatrix
-edge-bundles -spill-code-placement -virtregrewriter -stack-slot-coloring
-machinelicm -edge-bundles -prologepilog -machine-block-freq -branch-folder
-tailduplication -machine-cp -postrapseudos -machinedomtree -machine-loops
-post-RA-sched -gc-analysis -machine-block-freq -block-placement2
-stackmap-liveness
Thanks,
Trent
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150117/a5dfc025/attachment.ht...
2012 Jun 12
0
[LLVMdev] How to use LLVM optimizations with clang
...on -processimpdefs
> -slotindexes -liveintervals -livedebugvars -simple-register-coalescing
> -calcspillweights -livestacks -virtregmap -edge-bundles
> -spill-code-placement -stack-slot-coloring -machinelicm -edge-bundles
> -prologepilog -branch-folder -tailduplication -machine-cp
> -postrapseudos -machinedomtree -machine-loops -post-RA-sched
> -gc-analysis -machine-block-freq -block-placement2 -machinedomtree
> -machine-loops
>
> Now, how can I specify these optimization manually along with llc like
> we did with opt tool?
you can't.
Ciao, Duncan.
>
> Regards
>...
2012 Jun 12
0
[LLVMdev] How to use LLVM optimizations with clang
Hi,
On 12/06/12 13:09, Abdul Wahid Memon wrote:
> Thanks alot. How can we view those optimization which are enabled when we do
>
> llc -O3 comb.ll
llc -O3 comb.ll -debug-pass=Arguments
>
> Are these the same as the ones produced by the following command line
no, as I mentioned before they are of a completely different nature
to the optimizations that opt does.
Ciao, Duncan.
2012 Jun 12
2
[LLVMdev] How to use LLVM optimizations with clang
Thanks alot. How can we view those optimization which are enabled when we do
llc -O3 comb.ll
Are these the same as the ones produced by the following command line
llvm-as < /dev/null | opt -O3 -disable-output -debug-pass=Arguments
Regards
Shahzad
On Tue, Jun 12, 2012 at 1:01 PM, Duncan Sands <baldrick at free.fr> wrote:
>> Yes. But how exactly code generation (optimized one)