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
/
IPO
/
ArgumentPromotion.cpp
Age
Commit message (
Expand
)
Author
2007-09-04
Update GEP constructors to use an iterator interface to fix
David Greene
2007-08-27
Update InvokeInst to work like CallInst
David Greene
2007-08-23
rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()
Chris Lattner
2007-08-01
New CallInst interface to address GLIBCXX_DEBUG errors caused by
David Greene
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-01
Use APInt conversion to string so the result is correct regardless of the
Reid Spencer
2007-02-13
Eliminate use of ctors that take vectors.
Chris Lattner
2007-02-12
stop using methods that take vectors.
Chris Lattner
2007-02-11
simplify name juggling through the use of Value::takeName.
Chris Lattner
2007-02-05
Apply the VISIBILITY_HIDDEN field to the remaining anonymous classes in
Reid Spencer
2007-01-26
Inherit CallGraphSCCPass directly from Pass.
Devang Patel
2006-12-31
For PR950:
Reid Spencer
2006-12-19
Eliminate static ctors due to Statistic objects
Chris Lattner
2006-12-06
Detemplatize the Statistic class. The only type it is instantiated with
Chris Lattner
2006-11-26
Replace #include <iostream> with llvm_* streams.
Bill Wendling
2006-11-02
For PR786:
Reid Spencer
2006-10-20
For PR950:
Reid Spencer
2006-10-03
Revert previous patch. Still breaking things.
Evan Cheng
2006-09-28
Another attempt at making ArgPromotion smarter. This patch no longer breaks ...
Owen Anderson
2006-09-15
revert previous two patches. They cause miscompilation of MultiSource/Applic...
Chris Lattner
2006-09-15
Revert my previous work on ArgumentPromotion. Further investigation has reve...
Owen Anderson
2006-09-02
Make ArgumentPromotion handle recursive functions that pass pointers in their...
Owen Anderson
2006-08-27
eliminate RegisterOpt. It does the same thing as RegisterPass.
Chris Lattner
2006-01-22
Make iostream #inclusion explicit
Chris Lattner
2005-05-09
Preserve calling conventions when doing IPO
Chris Lattner
2005-05-06
preserve the tail marker
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-15
This mega patch converts us from using Function::a{iterator|begin|end} to
Chris Lattner
2005-01-08
Fix VS warnings.
Chris Lattner
2004-11-13
Remove debugging code
Chris Lattner
2004-11-13
Argument promotion transforms functions to unconditionally load their
Chris Lattner
2004-09-20
'Pass' should now not be derived from by clients. Instead, they should derive
Chris Lattner
2004-09-19
Add comment
Chris Lattner
2004-09-18
Convert this pass to be a CallGraphSCCPass instead of a Pass, which eliminates
Chris Lattner
2004-09-17
Fix typo in comment
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-07-18
bug 122:
Reid Spencer
2004-06-21
Make order of argument addition deterministic. In particular, the layout
Chris Lattner
2004-05-23
Fairly substantial changes to update the alias analysis we are querying as
Chris Lattner
2004-03-08
Implement ArgumentPromotion/aggregate-promote.ll
Chris Lattner
2004-03-07
Implement: ArgumentPromotion/chained.ll
Chris Lattner
2004-03-07
Fix another minor bug, exposed by perlbmk
Chris Lattner
2004-03-07
Fix a minor bug and turn debug output into, well, debug output.
Chris Lattner
2004-03-07
New LLVM pass: argument promotion. This version only handles simple scalar
Chris Lattner