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
/
CodeGenPrepare.cpp
Age
Commit message (
Expand
)
Author
2008-01-20
Make sure the caller doesn't use freed memory.
Duncan Sands
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-25
Don't break critical edges for single-bb loops, this helps with PR1877, though
Chris Lattner
2007-12-24
add a -backedge-hack llc-beta option to codegenprepare.
Chris Lattner
2007-12-13
Fix typo.
Evan Cheng
2007-12-13
Be extra careful with extension use optimation. Now turned on by default.
Evan Cheng
2007-12-12
Don't muck with phi nodes; bug fixes.
Evan Cheng
2007-12-12
Bug fix. Only safe to perform extension uses optimization if the source of ex...
Evan Cheng
2007-12-05
If both result of the {s|z}xt and its source are live out, rewrite all uses o...
Evan Cheng
2007-11-06
fix const correctness, BB is const, so its predecessors are too
Chris Lattner
2007-11-01
Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.
Duncan Sands
2007-08-02
wrap some long lines. Major offenders that are left include
Chris Lattner
2007-08-01
More explicit keywords.
Dan Gohman
2007-06-12
Sink CmpInst's to their uses to reduce register pressure.
Dale Johannesen
2007-05-08
Don't generate branch to entry block.
Dale Johannesen
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-04-25
Fix
Devang Patel
2007-04-14
use an accessor to simplify code.
Chris Lattner
2007-04-13
Completely rewrite addressing-mode related sinking of code. In particular,
Chris Lattner
2007-04-09
eliminate the last uses of some TLI methods.
Chris Lattner
2007-04-02
Various passes before isel split edges and do other CFG-restructuring changes.
Chris Lattner
2007-03-31
Split the sdisel code munging stuff out into its own opt-pass, CodeGenPrepare.
Chris Lattner