search for: condprop

Displaying 20 results from an estimated 20 matches for "condprop".

Did you mean: cond_pop
2010 Jan 13
2
[LLVMdev] Cross-module function inlining
...simplifycfg -domtree -domfrontier -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -basiccg -prune-eh -functionattrs -inline -argpromotion -simplify-libcalls -instcombine -jump-threading -simplifycfg -domtree -domfrontier -scalarrepl -instcombine -break-crit-edges -condprop -tailcallelim -simplifycfg -reassociate -domtree -loops -loopsimplify -domfrontier -lcssa -loop-rotate -licm -lcssa -loop-unswitch -instcombine -scalar-evolution -lcssa -iv-users -indvars -loop-deletion -lcssa -loop-unroll -instcombine -memdep -gvn -memdep -memcpyopt -sccp -instcombine -break-crit-...
2010 Feb 03
1
[LLVMdev] Compiling Linux Kernel
Does anyone have experience to compile Linux kernel in LLVM-2.6? I am working on a C/C++ race detection framework and want to test in large applications. But I do have a lot of errors while compiling Linux kernel 2.6.3 using LLVM-2.6. Actually, I only need to get the .bc bitcode file. Anyboy does similar work before? Which Linux kernel version is used and any skills? Thanks. Lei /****** * Lei
2009 Feb 02
1
[LLVMdev] Proposal: Debug information improvement - keep the line number with optimizations
...simplifycfg -domtree -domfrontier -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -basiccg -prune-eh -inline -argpromotion -tailduplicate -simplify-libcalls -instcombine -jump-threading -simplifycfg -domtree -domfrontier -scalarrepl -instcombine -break-crit-edges -condprop -tailcallelim -simplifycfg -reassociate -domtree -loops -loopsimplify -domfrontier -scalar-evolution -lcssa -loop-rotate -licm -lcssa -loop-unswitch -scalar-evolution -lcssa -loop-index-split -instcombine -scalar-evolution -domfrontier -lcssa -indvars -domfrontier -scalar-evolution -lcssa -loop-unr...
2006 Mar 21
3
[LLVMdev] problem loading analysis results from Inliner pass
...the real implementation that I'm interested in. Pass Arguments: -pmf-load -raiseallocs -simplifycfg -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -prune-eh -inline -argpromotion -raise -tailduplicate -simplifycfg -scalarrepl -instcombine -break-crit-edges -condprop -tailcallelim -simplifycfg -reassociate -loopsimplify -licm -instcombine -indvars -loop-unroll -instcombine -load-vn -gcse -sccp -instcombine -break-crit-edges -condprop -dse -mergereturn -adce -simplifycfg -deadtypeelim -constmerge -verify Target Data Layout Dummy PMF Interface Basic Alias Analysi...
2007 Dec 08
0
[LLVMdev] Reproducing output of llvm-gcc using opt tool
On Dec 7, 2007, at 1:43 AM, Wojciech Matyjewicz wrote: > Recently, I was looking into the bug #1227. I wanted to check if > reordering optimization passes could solve it. To start with, I > tried to > reproduce the output of llvm-g++ -O3 using the combination of llvm-g++ > -O0 and opt with the appropriate passes. However, I was unable to. I > use > SVN versions of llvm and
2008 Dec 04
0
[LLVMdev] 32bit math being promoted to 64 bit
...ifycfg -domtree -domfrontier -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -ba siccg -prune-eh -inline -argpromotion -simplify-libcalls -instcombine -jump-threading -simplifycfg -domtree -domfrontier -scalarrepl -instcombine -break-crit-edges -condprop -tailcallelim -simplifycfg -reassociate -domtree -loops -loopsimplify -domfrontier -scalar-evolution -lcssa -loop-rotate -licm -lcssa -scalar-evolution -lcssa -loop-index-split -instcombine -scalar-evolution -lcssa -simplifycfg -view-cfg Doesn't cause it, but llvm-as < test...
2008 Dec 04
2
[LLVMdev] 32bit math being promoted to 64 bit
On Thu, Dec 4, 2008 at 7:08 PM, Chris Lattner <clattner at apple.com> wrote: > > On Dec 4, 2008, at 8:58 AM, Villmow, Micah wrote: > > What optimization pass promotes 32 bit math operations to 64 bit operations > so I can disable it? I have code that works fine with optimizations turned > off but fails with it turned on because of this stage. > > > Do you have a
2007 Dec 07
3
[LLVMdev] Reproducing output of llvm-gcc using opt tool
Hi, Recently, I was looking into the bug #1227. I wanted to check if reordering optimization passes could solve it. To start with, I tried to reproduce the output of llvm-g++ -O3 using the combination of llvm-g++ -O0 and opt with the appropriate passes. However, I was unable to. I use SVN versions of llvm and llvm-gcc-4.2. First, I compile example.cpp (attached; taken from the bug #1227) with: $
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
On Mon, 20 Mar 2006, Michael McCracken wrote: > Hi, I'm trying to access an analysis pass from the Inliner pass, and > I'm having a lot of trouble getting that to work - I can verify that > my pass is loaded and run (it is a dynamically loaded pass that is > part of an analysisgroup), however, when I access it using > getAnalysis<> from within Inliner::runOnSCC, I am
2006 Mar 21
0
[LLVMdev] problem loading analysis results from Inliner pass
...that I'm interested in. > > Pass Arguments: -pmf-load -raiseallocs -simplifycfg -mem2reg > -globalopt -globaldce -ipconstprop -deadargelim -instcombine > -simplifycfg -prune-eh -inline -argpromotion -raise -tailduplicate > -simplifycfg -scalarrepl -instcombine -break-crit-edges -condprop > -tailcallelim -simplifycfg -reassociate -loopsimplify -licm > -instcombine -indvars -loop-unroll -instcombine -load-vn -gcse -sccp > -instcombine -break-crit-edges -condprop -dse -mergereturn -adce > -simplifycfg -deadtypeelim -constmerge -verify > Target Data Layout > Dummy PMF...
2010 Jan 13
0
[LLVMdev] Cross-module function inlining
...simplifycfg -domtree -domfrontier -mem2reg -globalopt -globaldce -ipconstprop -deadargelim -instcombine -simplifycfg -basiccg -prune-eh -functionattrs -inline -argpromotion -simplify-libcalls -instcombine -jump-threading -simplifycfg -domtree -domfrontier -scalarrepl -instcombine -break-crit-edges -condprop -tailcallelim -simplifycfg -reassociate -domtree -loops -loopsimplify -domfrontier -lcssa -loop-rotate -licm -lcssa -loop-unswitch -instcombine -scalar-evolution -lcssa -iv-users -indvars -loop-deletion -lcssa -loop-unroll -instcombine -memdep -gvn -memdep -memcpyopt -sccp -instcombine -break-crit-...
2006 Mar 21
2
[LLVMdev] problem loading analysis results from Inliner pass
Hi, I'm trying to access an analysis pass from the Inliner pass, and I'm having a lot of trouble getting that to work - I can verify that my pass is loaded and run (it is a dynamically loaded pass that is part of an analysisgroup), however, when I access it using getAnalysis<> from within Inliner::runOnSCC, I am instead getting the default, dummy version of my analysis, which should
2008 Aug 22
1
[LLVMdev] Conditonal to constant promotion?
...0 ; <i1>:16 [#uses=2] br i1 %15, label %bb.nph15.return_crit_edge, label %bb.nph15.split For instance, %umax22 is provably equal to %o, as the conditional used by select (%15) is the same as the one used by the conditional branch that brought us there. I tried sccp, condprop and constprop and none of them seems to handle this case. Is there one? Matthieu Delahaye -------------- next part -------------- A non-text attachment was scrubbed... Name: testcase.ll Type: application/octet-stream Size: 5272 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llv...
2007 Sep 22
2
[LLVMdev] LLVM 2.1 Pre-release Version 2 Online
LLVMers, The LLVM 2.1 pre-release version2 is now available: http://llvm.org/prereleases/2.1/version2/ You can help test this pre-release by doing one of the following: 1) Download llvm-2.1, llvm-test-2.1, and the appropriate llvm-gcc4.0 binary. Run "make check" and the full llvm-test suite (make TEST=nightly report). 2) Download llvm-2.1, llvm-test-2.1, and the llvm-gcc4.0 source.
2008 Feb 27
4
[LLVMdev] llvm/test: suffix or operands invalid for `push'
.../Delta/llvm/test/Transforms/ADCE/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/ArgumentPromotion/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/BlockPlacement/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/CodeExtractor/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/CondProp/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/ConstProp/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/ConstantMerge/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/CorrelatedExprs/dg.exp ... Running /home/jo/Delta/llvm/test/Transforms/DeadArgElim/dg.exp ... Running /home/jo...
2006 Apr 13
3
[LLVMdev] Re: Creating Release 1.7 Branch at 1:00pm PDT
Here's what's left on Linux (GCC 4.1.0), after all updates that went into the branch: Running /proj/llvm/build/../llvm/test/Regression/CFrontend/dg.exp ... FAIL: /proj/llvm/build/../llvm/test/Regression/CFrontend/2004-02-12- LargeAggregateCopy.c.tr: gccas: /proj/llvm/build/../llvm/lib/VMCore/Function.cpp:266: unsigned int llvm::Function::getIntrinsicID() const: Assertion `0 &&
2009 Feb 23
1
[LLVMdev] 2.5 Pre-release2 available for testing
On Mon, Feb 23, 2009 at 12:12 AM, Aaron Gray < aaronngray.lists at googlemail.com> wrote: > On Sun, Feb 22, 2009 at 11:15 PM, Anton Korobeynikov < > anton at korobeynikov.info> wrote: > >> >> Actually its [configure-stage3-intl] where its hanging. >> >> This can easily be due to inline FP math in the stdlib headers. For >> example - I had to
2008 Jun 10
3
[LLVMdev] DejaGNU test fixes
...... Running /home/kooijman/src/llvm-trunk/test/Transforms/ArgumentPromotion/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/BlockPlacement/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/CodeExtractor/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/CondProp/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/ConstProp/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/ConstantMerge/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/DeadArgElim/dg.exp ... Running /home/kooijman/src/llvm-trunk/test/Transforms/Dea...
2007 Sep 15
22
[LLVMdev] 2.1 Pre-Release Available (testers needed)
LLVMers, The 2.1 pre-release (version 1) is available for testing: http://llvm.org/prereleases/2.1/version1/ I'm looking for members of the LLVM community to test the 2.1 release. There are 2 ways you can help: 1) Download llvm-2.1, llvm-test-2.1, and the appropriate llvm-gcc4.0 binary. Run "make check" and the full llvm-test suite (make TEST=nightly report). 2) Download
2007 Oct 10
1
[LLVMdev] make check fails on latest SVN version
...rms/ADCE/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/ArgumentPromotion/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/BlockPlacement/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/CodeExtractor/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/CondProp/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/ConstProp/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/ConstantMerge/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/CorrelatedExprs/dg.exp ... Running /home/edwin/llvm-svn/llvm/test/Transforms/DeadArgElim/dg....