index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
DeadStoreElimination.cpp
Age
Commit message (
Expand
)
Author
2007-08-26
Don't DSe volatile stores.
Owen Anderson
2007-08-09
Make NonLocal and None const in the right way. :-)
Owen Anderson
2007-08-08
Change the None and NonLocal markers in memdep to be const.
Owen Anderson
2007-08-08
Global values also don't undead-ify pointers in our dead alloca's set.
Owen Anderson
2007-08-08
Make handleEndBlock significantly faster with one trivial improvement,
Owen Anderson
2007-08-08
Small improvement: if a function doesn't access memory, we don't need to scan
Owen Anderson
2007-08-08
Add some comments, remove a dead argument, and simplify some control flow.
Owen Anderson
2007-08-08
A few more small cleanups.
Owen Anderson
2007-08-08
First round of cleanups from Chris' feedback.
Owen Anderson
2007-08-02
Fix 80 col. violations.
Owen Anderson
2007-08-01
Rename FastDSE to just DSE.
Owen Anderson
2007-08-01
Move FastDSE in to DeadStoreElimination.
Owen Anderson
2007-08-01
Remove old DSE.
Owen Anderson
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-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
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-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2005-11-30
Fix a bug where we didn't realize that vaarg reads memory. This fixes
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-01-29
Adjust to changes in instruction interfaces.
Chris Lattner
2005-01-08
Fix uint64_t -> unsigned VS warnings.
Chris Lattner
2004-12-29
Fix PR491 and testcase Transforms/DeadStoreElimination/2004-12-28-PartialStor...
Chris Lattner
2004-11-28
Make DSE potentially more aggressive by being more specific about alloca sizes.
Chris Lattner
2004-09-20
Prototype these functions more accurately
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-07-26
Implement DeadStoreElim/alloca.llx by observing that allocas are dead at the
Chris Lattner
2004-07-25
* Substantially simplify how free instructions are handled (potentially fixing
Chris Lattner
2004-07-25
Free instructions kill values too. This implements DeadStoreElim/free.llx
Chris Lattner
2004-07-24
obvious fix
Chris Lattner
2004-07-22
This is a trivial dead store elimination pass. It very very simple and
Chris Lattner