index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
CondPropagate.cpp
Age
Commit message (
Expand
)
Author
2009-11-11
remove the now dead condprop pass, PR3906.
Chris Lattner
2009-11-01
strengthen an assumption: RevectorBlockTo knows that PredBB
Chris Lattner
2009-09-06
Remove some not-really-used variables, as warned
Duncan Sands
2009-09-02
eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861
Chris Lattner
2009-08-23
Kill off more cerr/cout uses and prune includes a bit.
Benjamin Kramer
2009-08-13
Push LLVMContexts through the IntegerType APIs.
Owen Anderson
2009-04-15
Avoid making the transformation enabled by my last patch if the new destinati...
Evan Cheng
2009-04-14
Optimize conditional branch on i1 phis with non-constant inputs.
Evan Cheng
2009-03-05
Add comment to emphasize that the while body is empty.
Bill Wendling
2009-02-07
Insert space to avoid warning and make code more readable.
Mike Stump
2009-02-05
Ignore dbg intrinsics while propagating conditional expression info. Take 2.
Devang Patel
2009-02-05
Revert rev. 63876. It is causing llvm-gcc bootstrap failure.
Devang Patel
2009-02-05
Remove dead blocks in the end.
Devang Patel
2009-02-05
Ignore dbg intrinsics while propagating conditional expression info.
Devang Patel
2009-01-26
Handle single-entry phi nodes gracefully in condprop.
Chris Lattner
2008-12-03
Factor some code into a new FoldSingleEntryPHINodes method.
Chris Lattner
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-08-02
Fix PR1575 and test/Transforms/CondProp/2007-08-01-InvalidRead.ll
Chris Lattner
2007-07-26
Fix thinko. Update return status appropriately.
Devang Patel
2007-05-06
Fix typo in comment.
Nick Lewycky
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-03-02
Prefer non-virtual calls to ConstantInt::isZero over virtual calls to
Reid Spencer
2007-03-01
Although probably not necessary, guard against a potential assertion by
Reid Spencer
2007-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-01-12
eliminate redundant check
Chris Lattner
2007-01-12
Implement review feedback for the ConstantBool->ConstantInt merge. Chris
Reid Spencer
2007-01-11
Rename BoolTy as Int1Ty. Patch by Sheng Zhou.
Reid Spencer
2007-01-11
For PR1043:
Zhou Sheng
2006-12-19
Switch over Transforms/Scalar to use the STATISTIC macro. For each statistic
Chris Lattner
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-11-26
Removed #include <iostream> and replaced with llvm_* streams.
Bill Wendling
2006-11-01
There can be more than one PHINode at the start of the block.
Devang Patel
2006-11-01
Handle PHINode with only one incoming value.
Devang Patel
2006-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-08-14
Handle single-entry PHI nodes correctly. This fixes PR877 and
Chris Lattner
2005-08-04
Fix a fixme in CondPropagate.cpp by moving a PhiNode optimization into
Nate Begeman
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-04-18
silence a bogus warning
Chris Lattner
2005-04-15
a new simple pass, which will be extended to be more useful in the future.
Chris Lattner